r621/Cargo.toml

26 lines
641 B
TOML
Raw Normal View History

2024-01-01 20:50:57 +00:00
[package]
name = "r621"
2024-02-16 21:53:09 +00:00
version = "0.2.3"
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"
2024-01-01 21:18:10 +00:00
homepage = "https://git.doggoat.de/dhalucario/r621"
2024-01-03 14:37:42 +00:00
documentation = "https://docs.rs/r621/latest/r621/"
2024-01-01 20:57:14 +00:00
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-03 19:47:20 +00:00
anyhow = "1.0"
base64 = "0.21"
reqwest = "0.11"
serde = { version = "1.0", features = ["derive", "std"] }
serde_json = "1.0"
thiserror = "1.0"
url = "2.5"
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 = []