2023-03-20 15:20:57 +00:00
|
|
|
[package]
|
|
|
|
name = "axum-example"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-25 20:49:00 +00:00
|
|
|
axum = "0.6.12"
|
2023-03-20 15:20:57 +00:00
|
|
|
http = "0.2.9"
|
2023-03-30 10:08:36 +00:00
|
|
|
serde = { version = "1.0.159", features = ["derive"] }
|
2023-03-20 15:20:57 +00:00
|
|
|
surrealdb = { path = "../.." }
|
2023-03-25 20:49:00 +00:00
|
|
|
thiserror = "1.0.40"
|
2023-03-30 10:08:36 +00:00
|
|
|
tokio = { version = "1.27.0", features = ["macros", "rt-multi-thread"] }
|