joscha gay

This commit is contained in:
uh wot 2021-07-15 00:10:10 +02:00
commit e30854304f
Signed by: uhwot
GPG key ID: CB2454984587B781
24 changed files with 3073 additions and 0 deletions

23
Cargo.toml Normal file
View 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"]