rustyfox/Cargo.toml

17 lines
594 B
TOML
Raw Permalink Normal View History

2025-01-25 00:09:48 +00:00
[package]
2025-01-27 17:40:02 +00:00
name = "rustyfox"
description = "A client for https://furaffinity-api.herokuapp.com"
2025-01-27 20:34:08 +00:00
version = "0.1.0"
2025-01-25 00:09:48 +00:00
edition = "2021"
repository = "https://git.doggoat.de/dhalucario/rustyfox.git"
homepage = "https://furaffinity-api.herokuapp.com"
license = "MIT"
2025-01-25 00:09:48 +00:00
[dependencies]
2025-01-27 20:34:08 +00:00
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"]}
2025-01-27 22:41:00 +00:00
chrono = { version = "0.4", features = ["serde"] }