Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump rand from 0.7.3 to 0.8.5 #282

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
126 changes: 73 additions & 53 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/diem-dev/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ move-core-types = { path = "../../language/move-core/types", version = "0.1.0" }
transaction-builder = { path = "../../language/transaction-builder", version = "0.1.0" }

[dev-dependencies]
rand = "0.7.3"
rand = "0.8.5"

[build-dependencies]
bindgen = "0.54.0"
Expand Down
2 changes: 1 addition & 1 deletion client/json-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ anyhow = "1.0.34"
async-trait = "0.1.42"
futures = "0.3.8"
hex = "0.4.2"
rand = "0.7.3"
rand = "0.8.5"
reqwest = { version = "0.10.9", features = ["blocking", "json"], default_features = false }
serde = { version = "1.0.117", default-features = false }
serde_json = "1.0.60"
Expand Down
2 changes: 1 addition & 1 deletion client/swiss-knife/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
structopt = "0.3.21"
rand = "0.7.3"
rand = "0.8.5"
hex = "0.4.2"
serde_json = "1.0.60"
serde = { version = "1.0.117", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion common/temppath/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ edition = "2018"
[dependencies]
hex = "0.4.2"
diem-workspace-hack = { path = "../workspace-hack", version = "0.1.0" }
rand = "0.7.3"
rand = "0.8.5"
2 changes: 1 addition & 1 deletion config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2018"
get_if_addrs = { version = "0.5.3", default-features = false }
log = { version = "0.4.11", features = ["serde"] }
mirai-annotations = "1.10.1"
rand = "0.7.3"
rand = "0.8.5"
serde = { version = "1.0.117", features = ["rc"], default-features = false }
serde_yaml = "0.8.14"
thiserror = "1.0.22"
Expand Down
2 changes: 1 addition & 1 deletion config/generate-key/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false
edition = "2018"

[dependencies]
rand = "0.7.3"
rand = "0.8.5"

bcs = "0.1.2"
diem-crypto = { path = "../../crypto/crypto/", version = "0.1.0"}
Expand Down
2 changes: 1 addition & 1 deletion config/management/genesis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
anyhow = "1.0.34"
rand = "0.7.3"
rand = "0.8.5"
serde = { version = "1.0.117", features = ["rc"], default-features = false }
structopt = "0.3.21"
thiserror = "1.0.22"
Expand Down
2 changes: 1 addition & 1 deletion config/management/network-address-encryption/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.
move-core-types = { path = "../../../language/move-core/types", version = "0.1.0" }

[dev-dependencies]
rand = "0.7.3"
rand = "0.8.5"
2 changes: 1 addition & 1 deletion config/seed-peer-generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.34"
hex = "0.4.2"
rand = "0.7.3"
rand = "0.8.5"
serde_yaml = "0.8.14"
structopt = "0.3.21"
thiserror = "1.0.22"
Expand Down
2 changes: 1 addition & 1 deletion consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ num-derive = { version = "0.3.3", default-features = false }
num-traits = { version = "0.2.14", default-features = false }
once_cell = "1.4.1"
proptest = { version = "0.10.1", optional = true }
rand = { version = "0.7.3", default-features = false }
rand = { version = "0.8.5", default-features = false }
serde = { version = "1.0.117", default-features = false }
serde_json = "1.0.60"
termion = { version = "1.5.5", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion consensus/safety-rules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"

[dependencies]
once_cell = "1.4.1"
rand = { version = "0.7.3", default-features = false }
rand = { version = "0.8.5", default-features = false }
proptest = { version = "0.10.1", optional = true }
rand_core = "0.5.1"

Expand Down
2 changes: 1 addition & 1 deletion crypto/crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ once_cell = "1.4.1"
mirai-annotations = "1.10.1"
proptest = { version = "0.10.1", optional = true }
proptest-derive = { version = "0.2.0", optional = true }
rand = "0.7.3"
rand = "0.8.5"
rand_core = { version = "0.5.1", default-features = false }
serde = { version = "1.0.117", features = ["derive"] }
serde_bytes = "0.11.5"
Expand Down
2 changes: 1 addition & 1 deletion execution/execution-correctness/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"

[dependencies]
anyhow = "1.0.34"
rand = { version = "0.7.3", default-features = false }
rand = { version = "0.8.5", default-features = false }

consensus-types = { path = "../../consensus/consensus-types", version = "0.1.0", default-features = false }
executor = { path = "../executor", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion execution/executor-benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
itertools = { version = "0.9.0", default-features = false }
rand = "0.7.3"
rand = "0.8.5"
rayon = "1.5.0"
structopt = "0.3.21"

Expand Down
2 changes: 1 addition & 1 deletion execution/executor-test-helpers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
anyhow = "1.0.34"
rand = "0.7.3"
rand = "0.8.5"
tempfile = "3.1.0"

executor = { path = "../executor", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion execution/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ proptest = { version = "0.10.1", optional = true }

[dev-dependencies]
proptest = "0.10.1"
rand = "0.7.3"
rand = "0.8.5"

compiled-stdlib = { path = "../../language/stdlib/compiled", version = "0.1.0" }
compiler = { path = "../../language/compiler", version = "0.1.0" }
Expand Down
4 changes: 2 additions & 2 deletions json-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ futures = "0.3.8"
hex = "0.4.2"
hyper = "0.13.9"
once_cell = "1.4.1"
rand = "0.7.3"
rand = "0.8.5"
serde_json = "1.0.60"
serde = { version = "1.0.117", default-features = false }
tokio = { version = "0.2.22", features = ["full"] }
Expand Down Expand Up @@ -44,7 +44,7 @@ storage-interface = { path = "../storage/storage-interface", version = "0.1.0" }
[dev-dependencies]
proptest = "0.10.1"
reqwest = { version = "0.10.9", features = ["blocking", "json"], default_features = false }
rand = { version = "0.7.3" }
rand = { version = "0.8.5" }

generate-key = { path = "../config/generate-key", version = "0.1.0" }
diemdb = { path = "../storage/diemdb", version = "0.1.0", features = ["fuzzing"] }
Expand Down
2 changes: 1 addition & 1 deletion language/move-core/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.34"
hex = "0.4.2"
rand = "0.7.3"
rand = "0.8.5"
proptest = { version = "0.10.1", default-features = false, optional = true }
mirai-annotations = "1.10.1"
proptest-derive = { version = "0.2.0", default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion language/move-prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ itertools = "0.9.0"
log = "0.4.11"
num = "0.3.0"
pretty = "0.10.0"
rand = "0.7.3"
rand = "0.8.5"
regex = "1.4.2"
serde = { version = "1.0.117", features = ["derive"] }
serde_json = "1.0.60"
Expand Down
2 changes: 1 addition & 1 deletion language/testing-infra/e2e-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ bcs = "0.1.2"
compiler = { path = "../../compiler", version = "0.1.0" }
once_cell = "1.4.1"
diem-crypto = { path = "../../../crypto/crypto", version = "0.1.0", features = ["fuzzing"] }
rand = "0.7.3"
rand = "0.8.5"
diem-state-view = { path = "../../../storage/state-view", version = "0.1.0" }
diem-types = { path = "../../../types", version = "0.1.0", features = ["fuzzing"] }
move-core-types = { path = "../../move-core/types", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion language/testing-infra/module-generation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false
edition = "2018"

[dependencies]
rand = "0.7.3"
rand = "0.8.5"

bytecode-verifier = { path = "../../bytecode-verifier", version = "0.1.0" }
ir-to-bytecode = { path = "../../compiler/ir-to-bytecode", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion language/testing-infra/test-generation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false
edition = "2018"

[dependencies]
rand = "0.7.3"
rand = "0.8.5"
num_cpus = "1.13.0"
mirai-annotations = "1.10.1"
structopt = "0.3.21"
Expand Down
2 changes: 1 addition & 1 deletion language/tools/vm-genesis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ publish = false
[dependencies]
anyhow = "1.0.34"
once_cell = "1.4.1"
rand = "0.7.3"
rand = "0.8.5"

bytecode-verifier = { path = "../../bytecode-verifier", version = "0.1.0" }
bcs = "0.1.2"
Expand Down
2 changes: 1 addition & 1 deletion mempool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ diem-types = { path = "../types", version = "0.1.0" }
diem-workspace-hack = { path = "../common/workspace-hack", version = "0.1.0" }
mirai-annotations = "1.10.1"
network = { path = "../network", version = "0.1.0" }
rand = "0.7.3"
rand = "0.8.5"
netcore = { path = "../network/netcore", version = "0.1.0" }
serde_json = "1.0.60"
storage-interface = { path = "../storage/storage-interface", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ once_cell = "1.4.1"
pin-project = "1.0.2"
proptest = { version = "0.10.1", default-features = true, optional = true }
proptest-derive = { version = "0.2.0", optional = true }
rand = { version = "0.7.3", features = ["small_rng"] }
rand = { version = "0.8.5", features = ["small_rng"] }
rand_core = { version = "0.5.1", optional = true }
serde = { version = "1.0.117", default-features = false }
serde_bytes = "0.11.5"
Expand Down
2 changes: 1 addition & 1 deletion network/builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2018"

[dependencies]
futures = "0.3.8"
rand = "0.7.3"
rand = "0.8.5"
serde = { version = "1.0.117", default-features = false }
tokio = { version = "0.2.22", features = ["full"] }
tokio-retry = "0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion network/socket-bench-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ memsocket = { path = "../../network/memsocket", version = "0.1.0" }
netcore = { path = "../../network/netcore", version = "0.1.0", features = ["fuzzing", "testing"] }
network = { path = "../../network", version = "0.1.0", features = ["testing", "fuzzing"] }
network-builder = { path = "../../network/builder", version = "0.1.0"}
rand = "0.7.3"
rand = "0.8.5"
2 changes: 1 addition & 1 deletion secure/key-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ transaction-builder-generated = { path = "../../client/transaction-builder", ver
[dev-dependencies]
anyhow = "1.0.34"
futures = "0.3.8"
rand = "0.7.3"
rand = "0.8.5"
tokio = { version = "0.2.22", features = ["full"] }

executor = { path = "../../execution/executor", version = "0.1.0" }
Expand Down
4 changes: 2 additions & 2 deletions secure/storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2018"
base64 = "0.13.0"
chrono = "0.4.19"
enum_dispatch = "0.3.4"
rand = "0.7.3"
rand = "0.8.5"
serde = { version = "1.0.117", features = ["rc"], default-features = false }
serde_json = "1.0.60"
thiserror = "1.0.22"
Expand All @@ -31,7 +31,7 @@ diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0"
[dev-dependencies]
diem-crypto = { path = "../../crypto/crypto", version = "0.1.0", features = ["fuzzing"] }
diem-crypto-derive = { path = "../../crypto/crypto-derive", version = "0.1.0" }
rand = "0.7.3"
rand = "0.8.5"

[features]
fuzzing = ["diem-crypto/fuzzing"]
Expand Down
2 changes: 1 addition & 1 deletion state-synchronizer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fail = "0.4.0"
futures = "0.3.8"
serde = { version = "1.0.117", default-features = false }
once_cell = "1.4.1"
rand = "0.7.3"
rand = "0.8.5"
tokio = { version = "0.2.22", features = ["full"] }
itertools = { version = "0.9.0", default-features = false }
proptest = { version = "0.10.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion storage/accumulator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0"
proptest = { version = "0.10.1", optional = true }

[dev-dependencies]
rand = "0.7.3"
rand = "0.8.5"
proptest = "0.10.1"

diem-crypto = { path = "../../crypto/crypto", version = "0.1.0", features = ["fuzzing"] }
Expand Down
2 changes: 1 addition & 1 deletion storage/backup/backup-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ itertools = "0.9.0"
num_cpus = "1.13.0"
once_cell = "1.4.1"
pin-project = "1.0.2"
rand = "0.7.3"
rand = "0.8.5"
regex = "1.4.2"
reqwest = { version = "0.10.9", features = ["stream"], default-features = false }
serde = { version = "1.0.117", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion storage/diemdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ storage-interface = { path = "../storage-interface", version = "0.1.0" }
[dev-dependencies]
proptest = "0.10.1"
proptest-derive = "0.2.0"
rand = "0.7.3"
rand = "0.8.5"

diem-jellyfish-merkle = { path = "../jellyfish-merkle", version = "0.1.0", features = ["fuzzing"] }
diem-proptest-helpers = { path = "../../common/proptest-helpers", version = "0.1.0" }
Expand Down
4 changes: 2 additions & 2 deletions storage/jellyfish-merkle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ num-derive = "0.3.3"
num-traits = "0.2.14"
proptest = { version = "0.10.1", optional = true }
proptest-derive = { version = "0.2.0", optional = true }
rand = {version = "0.7.3", optional = true }
rand = {version = "0.8.5", optional = true }
serde = { version = "1.0.117", features = ["derive"] }
thiserror = "1.0.22"

Expand All @@ -30,7 +30,7 @@ diem-types = { path = "../../types", version = "0.1.0" }
diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" }

[dev-dependencies]
rand = "0.7.3"
rand = "0.8.5"
proptest = "0.10.1"
proptest-derive = "0.2.0"

Expand Down
2 changes: 1 addition & 1 deletion storage/storage-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ diem-secure-net = { path = "../../secure/net", version = "0.1.0" }
storage-interface = { path = "../storage-interface", version = "0.1.0" }
diem-types = { path = "../../types", version = "0.1.0" }
diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" }
rand = { version = "0.7.3", optional = true }
rand = { version = "0.8.5", optional = true }
storage-client = { path = "../storage-client", version = "0.1.0", optional = true }
proptest = { version = "0.10.1", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion testsuite/cli/diem-wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
anyhow = "1.0.34"
rand = "0.7.3"
rand = "0.8.5"
hex = "0.4.2"
hmac = "0.10.1"
byteorder = "1.3.4"
Expand Down
2 changes: 1 addition & 1 deletion testsuite/cluster-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ flate2 = { version = "1.0.19", features = ["rust_backend"], default-features = f
hex = "0.4.2"
itertools = "0.9.0"
once_cell = "1.4.1"
rand = "0.7.3"
rand = "0.8.5"
regex = { version = "1.4.2", default-features = false, features = ["std", "perf"] }
reqwest = { version = "0.10.9", features = ["blocking", "json"] }
serde_json = "1.0.60"
Expand Down
2 changes: 1 addition & 1 deletion testsuite/diem-fuzzer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ rusty-fork = { version = "0.3.0", default-features = false }
serde_json = "1.0.60"
sha-1 = { version = "0.9.2", default-features = false }
structopt = "0.3.21"
rand = "0.7.3"
rand = "0.8.5"
ureq = { version = "1.5.4", features = ["json", "native-tls"], default-features = false }

bcs = "0.1.2"
Expand Down
2 changes: 1 addition & 1 deletion testsuite/generate-format/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false
edition = "2018"

[dependencies]
rand = "0.7.3"
rand = "0.8.5"
serde = { version = "1.0.117", features = ["derive"] }
serde-reflection = "0.3.2"
serde_yaml = "0.8.14"
Expand Down
2 changes: 1 addition & 1 deletion testsuite/smoke-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ hex = "0.4.2"
once_cell = "1.4.1"
num = "0.3.0"
num-traits = "0.2.14"
rand = "0.7.3"
rand = "0.8.5"
regex = "1.4.2"
rust_decimal = "1.8.1"
rusty-fork = "0.3.0"
Expand Down
2 changes: 1 addition & 1 deletion types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ once_cell = "1.4.1"
mirai-annotations = "1.10.1"
proptest = { version = "0.10.1", default-features = false, optional = true }
proptest-derive = { version = "0.2.0", default-features = false, optional = true }
rand = "0.7.3"
rand = "0.8.5"
serde = { version = "1.0.117", default-features = false }
serde_json = "1.0.60"
serde_bytes = "0.11.5"
Expand Down
2 changes: 1 addition & 1 deletion vm-validator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ diem-vm = { path = "../language/diem-vm", version = "0.1.0" }
diem-workspace-hack = { path = "../common/workspace-hack", version = "0.1.0" }

[dev-dependencies]
rand = "0.7.3"
rand = "0.8.5"

executor = { path = "../execution/executor", version = "0.1.0" }
executor-test-helpers = { path = "../execution/executor-test-helpers", version = "0.1.0" }
Expand Down