25 lines
824 B
TOML
25 lines
824 B
TOML
[package]
|
|
name = "turnerbund"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
disabled=[]
|
|
|
|
[dependencies]
|
|
spond = { path = "../api", features = [ "reqwest" ] }
|
|
anyhow = "1.0.101"
|
|
async-trait = "0.1.89"
|
|
bon = "3.9.0"
|
|
chrono = { version = "0.4.43", features = ["serde"] }
|
|
http = "1.4.0"
|
|
rand = "0.10.0"
|
|
#reqwest = { version = "0.13.2", features = ["json", "zstd", "brotli", "gzip", "deflate"] }
|
|
reqwest-middleware = { version = "0.5.1", features = ["json", "http2"] }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.149"
|
|
thiserror = "2.0.18"
|
|
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread", "tracing"] }
|
|
tracing = { version = "0.1.44", features = ["log"] }
|
|
tracing-subscriber = { version = "0.3.22", features = ["serde", "json", "tracing", "env-filter", "chrono"] }
|
|
url = "2.5.8"
|