initial git dump

This commit is contained in:
Jonas Rabenstein 2026-02-16 02:51:10 +01:00
commit 781e25470b
47 changed files with 2361 additions and 0 deletions

25
turnerbund/Cargo.toml Normal file
View file

@ -0,0 +1,25 @@
[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"