surrealpatch/lib/examples/axum/Cargo.toml

13 lines
294 B
TOML
Raw Normal View History

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