Add hex crate
This commit is contained in:
parent
2bac280f3b
commit
db604e3eed
2 changed files with 5 additions and 0 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -485,6 +485,7 @@ dependencies = [
|
||||||
"axum",
|
"axum",
|
||||||
"base64",
|
"base64",
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
|
"hex",
|
||||||
"hmac",
|
"hmac",
|
||||||
"ldap3",
|
"ldap3",
|
||||||
"md-5",
|
"md-5",
|
||||||
|
@ -724,6 +725,9 @@ name = "hex"
|
||||||
version = "0.4.3"
|
version = "0.4.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
||||||
|
dependencies = [
|
||||||
|
"serde",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hkdf"
|
name = "hkdf"
|
||||||
|
|
|
@ -17,6 +17,7 @@ opt-level = 3
|
||||||
axum = "0.7.4"
|
axum = "0.7.4"
|
||||||
base64 = "0.21.7"
|
base64 = "0.21.7"
|
||||||
color-eyre = { version = "0.6.2" }
|
color-eyre = { version = "0.6.2" }
|
||||||
|
hex = { version = "0.4.3", features = ["serde"] }
|
||||||
hmac = "0.12.1"
|
hmac = "0.12.1"
|
||||||
ldap3 = { version = "0.11.3", default-features = false, features = ["tls-rustls"] }
|
ldap3 = { version = "0.11.3", default-features = false, features = ["tls-rustls"] }
|
||||||
md-5 = "0.10.6"
|
md-5 = "0.10.6"
|
||||||
|
|
Loading…
Reference in a new issue