2021-08-02 15:26:47 +00:00
|
|
|
[package]
|
|
|
|
name = "dzserver"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["uh wot <uhwot@protonmail.com>"]
|
2022-01-23 02:34:18 +00:00
|
|
|
edition = "2021"
|
2021-08-02 15:26:47 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2022-02-27 20:20:20 +00:00
|
|
|
blowfish = "0.9"
|
|
|
|
aes = "0.8"
|
2022-01-07 15:22:58 +00:00
|
|
|
md-5 = "0.10"
|
2022-02-27 20:20:20 +00:00
|
|
|
cipher = { version = "0.4", features = ["block-padding"] }
|
|
|
|
cbc = "0.1"
|
2021-08-02 15:26:47 +00:00
|
|
|
hex = "0.4"
|
|
|
|
|
2021-09-12 18:08:31 +00:00
|
|
|
wasm-bindgen = "0.2"
|
2021-08-02 15:26:47 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
wasm-bindgen-test = "0.3"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|