surrealpatch/lib/examples/axum/Cargo.toml

13 lines
295 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]
2023-05-22 13:38:10 +00:00
axum = "0.6.18"
serde = { version = "1.0.163", 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-05-22 13:38:10 +00:00
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"] }