Skip to content
Closed
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
437 changes: 285 additions & 152 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/faucet/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"
reqwest = { version = "0.10.9", features = ["blocking"], default-features = false }
reqwest = { version = "0.11.1", features = ["blocking"], default-features = false }
serde = "1.0.117"
serde_derive = "1.0.117"
structopt = "0.3.21"
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 @@ -15,7 +15,7 @@ async-trait = "0.1.42"
futures = "0.3.8"
hex = "0.4.2"
rand = "0.7.3"
reqwest = { version = "0.10.9", features = ["blocking", "json"], default_features = false }
reqwest = { version = "0.11.1", features = ["blocking", "json"], default_features = false }
serde = { version = "1.0.117", default-features = false }
serde_json = "1.0.60"
tokio = { version = "0.2.22", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion common/debug-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2018"
anyhow = "1.0.34"
bytes = "0.5.6"
tokio = { version = "0.2.22", features = ["full"] }
reqwest = { version = "0.10.9", features = ["blocking", "json"], default_features = false }
reqwest = { version = "0.11.1", features = ["blocking", "json"], default_features = false }
warp = "0.2.5"

diem-logger = { path = "../logger", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion common/trace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tokio = { version = "0.2.22", features = ["full"] }
serde_json = "1.0.60"
serde = "1.0.117"
anyhow = "1.0.34"
reqwest = { version = "0.10.9", features = ["blocking", "json"], default_features = false }
reqwest = { version = "0.11.1", features = ["blocking", "json"], default_features = false }
once_cell = "1.4.1"

diem-logger = { path = "../../common/logger", 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 @@ -21,7 +21,7 @@ serde_json = "1.0.60"
serde = { version = "1.0.117", default-features = false }
tokio = { version = "0.2.22", features = ["full"] }
warp = "0.2.5"
reqwest = { version = "0.10.9", features = ["blocking", "json"], default_features = false, optional = true }
reqwest = { version = "0.11.1", features = ["blocking", "json"], default_features = false, optional = true }
proptest = { version = "0.10.1", optional = true }

bcs = "0.1.1"
Expand All @@ -43,7 +43,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 }
reqwest = { version = "0.11.1", features = ["blocking", "json"], default_features = false }
rand = { version = "0.7.3" }

generate-key = { path = "../config/generate-key", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion language/diem-tools/diem-events-fetcher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.34"
hex = "0.4.2"
reqwest = { version = "0.10.9", features = ["blocking", "json"] }
reqwest = { version = "0.11.1", features = ["blocking", "json"] }
structopt = "0.3.21"
futures = "0.3.8"
tokio = { version = "0.2.22", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion language/diem-tools/diem-validator-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
reqwest = { version = "0.10.9", features = ["blocking", "json"] }
reqwest = { version = "0.11.1", features = ["blocking", "json"] }
anyhow = "1.0.34"
diem-config = { path = "../../../config", version = "0.1.0" }
diem-json-rpc-client = { path = "../../../client/json-rpc", version = "0.1.0" }
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 @@ -21,7 +21,7 @@ once_cell = "1.4.1"
pin-project = "1.0.2"
rand = "0.7.3"
regex = "1.4.2"
reqwest = { version = "0.10.9", features = ["stream"], default-features = false }
reqwest = { version = "0.11.1", features = ["stream"], default-features = false }
serde = { version = "1.0.117", features = ["derive"] }
serde_json = "1.0.60"
structopt = "0.3.21"
Expand Down
2 changes: 1 addition & 1 deletion storage/backup/backup-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ diemdb = { path = "../../diemdb", version = "0.1.0", features = ["fuzzing"] }
diem-config = { path = "../../../config", version = "0.1.0" }
diem-temppath = { path = "../../../common/temppath", version = "0.1.0" }

reqwest = { version = "0.10.9", features = ["blocking", "json"], default_features = false }
reqwest = { version = "0.11.1", features = ["blocking", "json"], default_features = false }

[features]
fuzzing = ["diemdb/fuzzing"]
2 changes: 1 addition & 1 deletion testsuite/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rustyline = "7.0.0"
rust_decimal = "1.8.1"
num-traits = "0.2.14"
once_cell = "1.4.1"
reqwest = { version = "0.10.9", features = ["blocking", "json"] }
reqwest = { version = "0.11.1", features = ["blocking", "json"] }
serde = { version = "1.0.117", features = ["derive"] }
structopt = "0.3.21"
tokio = { version = "0.2.22", features = ["full"] }
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 @@ -17,7 +17,7 @@ itertools = "0.9.0"
once_cell = "1.4.1"
rand = "0.7.3"
regex = { version = "1.4.2", default-features = false, features = ["std", "perf"] }
reqwest = { version = "0.10.9", features = ["blocking", "json"] }
reqwest = { version = "0.11.1", features = ["blocking", "json"] }
serde_json = "1.0.60"
serde_yaml = "0.8.14"
termion = "1.5.5"
Expand Down
2 changes: 1 addition & 1 deletion testsuite/diem-swarm/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"
ctrlc = { version = "3.1.7", default-features = false }
reqwest = { version = "0.10.9", features = ["blocking"], default-features = false }
reqwest = { version = "0.11.1", features = ["blocking"], default-features = false }
structopt = "0.3.21"
thiserror = "1.0.22"
diem-config = { path = "../../config", version = "0.1.0", features = ["fuzzing"] }
Expand Down