17 lines
307 B
TOML
17 lines
307 B
TOML
[package]
|
|
name = "api"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
toml = { workspace = true }
|
|
tracing = { workspace = true }
|
|
async-trait = "0.1.89"
|
|
|
|
[features]
|
|
default = []
|