26 lines
812 B
TOML
26 lines
812 B
TOML
[package]
|
|
name = "r621"
|
|
version = "0.2.5-rc4"
|
|
edition = "2021"
|
|
description = "Provides a client to access e621"
|
|
homepage = "https://git.doggoat.de/dhalucario/r621"
|
|
documentation = "https://docs.rs/r621/latest/r621/"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://git.doggoat.de/dhalucario/r621"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
base64 = "0.21"
|
|
reqwest = { version = "^0.12", default-features = false, features = ["charset", "http2", "system-proxy", "json"] }
|
|
serde = { version = "1.0", features = ["derive", "std"] }
|
|
thiserror = "1.0"
|
|
url = "2.5"
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
[features]
|
|
default = ["native-tls"]
|
|
rustls-tls = ["reqwest/rustls-tls"]
|
|
native-tls = ["reqwest/native-tls"]
|