r621/Cargo.toml

26 lines
591 B
TOML
Raw Normal View History

2024-01-01 20:50:57 +00:00
[package]
name = "r621"
2024-01-01 20:50:57 +00:00
version = "0.2.0"
2024-01-01 20:50:57 +00:00
edition = "2021"
2024-01-01 20:57:14 +00:00
description = "Provides a client to access e621"
homepage = ""
documentation = ""
license = "MIT"
readme = "README.md"
repository = "https://git.doggoat.de/dhalucario/r621"
2024-01-01 20:50:57 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-01-01 20:50:57 +00:00
anyhow = "1.0.77"
base64 = "0.21.5"
reqwest = "0.11.23"
2024-01-01 20:50:57 +00:00
serde = { version = "1.0.193", features = ["derive", "std"] }
serde_json = "1.0.108"
thiserror = "1.0.52"
url = "2.5.0"
2024-01-01 20:50:57 +00:00
tokio = { version = "1", features = ["full"] }
2024-01-01 20:50:57 +00:00
2024-01-01 20:50:57 +00:00
[features]
2024-01-01 20:57:14 +00:00
dump = []