Lock down rand_core 0.5.1 to specific features

This commit is contained in:
Jubilee Young 2021-04-23 18:00:46 -07:00
parent 1f5e1c5efa
commit 7d3186d92a
2 changed files with 2 additions and 0 deletions

View File

@ -3602,6 +3602,7 @@ dependencies = [
"libz-sys",
"proc-macro2",
"quote",
"rand_core 0.5.1",
"serde",
"serde_json",
"smallvec",

View File

@ -69,6 +69,7 @@ libc = { version = "0.2.79", features = ["align"] }
libz-sys = { version = "1.1.2" }
proc-macro2 = { version = "1", features = ["default"] }
quote = { version = "1", features = ["default"] }
rand_core_0_5 = { package = "rand_core", version = "0.5.1", features = ["getrandom", "alloc", "std"] }
serde = { version = "1.0.82", features = ['derive'] }
serde_json = { version = "1.0.31", features = ["raw_value", "unbounded_depth"] }
smallvec = { version = "1.6.1", features = ['union', 'may_dangle'] }