joscha gay
This commit is contained in:
commit
e30854304f
24 changed files with 3073 additions and 0 deletions
23
Cargo.toml
Normal file
23
Cargo.toml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
[package]
|
||||
name = "dzlib-rs"
|
||||
version = "0.1.0"
|
||||
authors = ["uh_wot <uhwot@protonmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
md-5 = "0.9"
|
||||
hex = { version = "0.4", optional = true }
|
||||
aes = { version = "0.7", optional = true }
|
||||
block-modes = { version = "0.8", optional = true }
|
||||
thiserror = "1.0"
|
||||
|
||||
[dev-dependencies]
|
||||
tokio-test = "0.4"
|
||||
|
||||
[features]
|
||||
default = ["stream"]
|
||||
stream = ["hex", "aes", "block-modes"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue