rustyfox/Cargo.toml
2025-06-10 02:04:33 +02:00

20 lines
697 B
TOML

[package]
name = "rustyfox"
description = "A client for https://furaffinity-api.herokuapp.com"
version = "0.2-rc1"
edition = "2021"
repository = "https://git.doggoat.de/dhalucario/rustyfox.git"
homepage = "https://furaffinity-api.herokuapp.com"
license = "MIT"
[dependencies]
anyhow = "1.0"
reqwest = { version = "^0.12", default-features = false, features = ["charset", "http2", "system-proxy", "json"] }
tokio = { version = "1.43", features = ["full", "rt-multi-thread"]}
serde = { version = "1.0", features = ["default", "derive"]}
chrono = { version = "0.4", features = ["serde"] }
[features]
default = ["native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
native-tls = ["reqwest/native-tls"]