14 lines
310 B
TOML
14 lines
310 B
TOML
|
[package]
|
||
|
name = "axum-example"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
|
||
|
[dependencies]
|
||
|
axum = "0.6.11"
|
||
|
http = "0.2.9"
|
||
|
serde = { version = "1.0.152", features = ["derive"] }
|
||
|
surrealdb = { path = "../.." }
|
||
|
thiserror = "1.0.38"
|
||
|
tokio = { version = "1.25.0", features = ["macros", "rt-multi-thread"] }
|