2023-03-20 15:20:57 +00:00
|
|
|
[package]
|
|
|
|
name = "axum-example"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-18 12:53:25 +00:00
|
|
|
axum = "0.7.2"
|
2023-11-27 10:23:26 +00:00
|
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
2024-02-19 15:11:58 +00:00
|
|
|
surrealdb = { path = "../.." ,features = ["kv-mem"]}
|
2023-11-27 10:23:26 +00:00
|
|
|
thiserror = "1.0.50"
|
|
|
|
tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread"] }
|