diff --git a/Cargo.lock b/Cargo.lock index 9f864a9..20baaf6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -15,6 +15,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" dependencies = [ "generic-array", + "rand_core", ] [[package]] diff --git a/common/Cargo.toml b/common/Cargo.toml index c8ae6fa..cf322b1 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT" [dependencies] base64 = "0.13" bytes = { version = "1", features = ["serde"] } -chacha20poly1305 = { version = "0.9", features = ["stream"] } +chacha20poly1305 = { version = "0.9", features = ["stream", "std"] } chrono = { version = "0.4", features = ["serde"] } headers = "0.3" lazy_static = "1"