Replace openssl with RustCrypto
OpenSSL can be a pain to build at the best of times, so relying on a pure Rust implementation of block ciphers makes life a little easier.
... | ... | @@ -5,8 +5,10 @@ authors = ["tec <[email protected]>"] |
edition = "2018" | ||
[dependencies] | ||
aes = "0.6" | ||
async-trait = "0.1.42" | ||
base64 = "0.13.0" | ||
block-modes = "0.7" | ||
chrono = "0.4.19" | ||
diesel = { version = "1.4.5", features = ["sqlite"] } | ||
guard = "0.5.0" | ||
... | ... | @@ -15,7 +17,6 @@ indexmap = { version = "1.6.1", features = ["serde-1"] } |
lazy_static = "1.4.0" | ||
ldap3 = "0.9.1" | ||
log = "0.4.11" | ||
openssl = "0.10.32" | ||
rand = "0.8.1" | ||
rayon = "1.5.0" | ||
regex = "1.4.3" | ||
... | ... |
Please register or sign in to comment