Compare commits
6 commits
Author | SHA1 | Date | |
---|---|---|---|
|
706a83733b | ||
|
c697ed30b1 | ||
|
5922ed29f2 | ||
|
f0bd946282 | ||
|
c06893f9c6 | ||
|
536f6e781c |
2 changed files with 442 additions and 294 deletions
729
Cargo.lock
generated
729
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "r621"
|
||||
version = "0.2.5-rc1"
|
||||
edition = "2024"
|
||||
version = "0.2.5"
|
||||
edition = "2021"
|
||||
description = "Provides a client to access e621"
|
||||
homepage = "https://git.doggoat.de/dhalucario/r621"
|
||||
documentation = "https://docs.rs/r621/latest/r621/"
|
||||
|
@ -14,12 +14,13 @@ repository = "https://git.doggoat.de/dhalucario/r621"
|
|||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
base64 = "0.21"
|
||||
reqwest = { version = "0.12", features = ["default", "json"] }
|
||||
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"]
|
||||
|
|
Loading…
Reference in a new issue