2025-01-25 00:09:48 +00:00
|
|
|
[package]
|
2025-01-27 17:40:02 +00:00
|
|
|
name = "rustyfox"
|
2025-01-27 22:44:30 +00:00
|
|
|
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"
|
2025-01-27 22:42:45 +00:00
|
|
|
repository = "https://git.doggoat.de/dhalucario/rustyfox.git"
|
2025-01-27 22:44:30 +00:00
|
|
|
homepage = "https://furaffinity-api.herokuapp.com"
|
2025-01-27 22:42:45 +00:00
|
|
|
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"] }
|