13 lines
310 B
TOML
13 lines
310 B
TOML
[package]
|
|
name = "axum-example"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
axum = "0.6.12"
|
|
http = "0.2.9"
|
|
serde = { version = "1.0.159", features = ["derive"] }
|
|
surrealdb = { path = "../.." }
|
|
thiserror = "1.0.40"
|
|
tokio = { version = "1.27.0", features = ["macros", "rt-multi-thread"] }
|