15 lines
536 B
TOML
15 lines
536 B
TOML
[package]
|
|
name = "rustyfox"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
repository = "https://git.doggoat.de/dhalucario/rustyfox.git"
|
|
homepage = "https://git.doggoat.de/dhalucario/rustyfox.git"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
tokio = { version = "1.43", features = ["full", "rt-multi-thread"]}
|
|
serde = { version = "1.0", features = ["default", "derive"]}
|
|
serde_json = { version = "1.0", features = ["default", "std", "alloc"]}
|
|
chrono = { version = "0.4", features = ["serde"] }
|