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
993 changes: 453 additions & 540 deletions Cargo.lock

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions client/faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ edition = "2018"

[dependencies]
anyhow = "1.0.38"
hex = "0.4.2"
reqwest = { version = "0.11.1", features = ["blocking"], default-features = false }
serde = "1.0.123"
hex = "0.4.3"
rand = "0.8.3"
reqwest = { version = "0.11.2", features = ["blocking"], default-features = false }
serde = "1.0.125"
serde_derive = "1.0.117"
structopt = "0.3.21"
tokio = { version = "1.2.0", features = ["full"] }
tokio = { version = "1.3.0", features = ["full"] }
warp = "0.3.0"

generate-key = { path = "../../config/generate-key" }
Expand All @@ -28,10 +29,10 @@ diem-logger = { path = "../../common/logger" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
move-core-types = { path = "../../language/move-core/types" }
transaction-builder-generated = { path = "../transaction-builder" }
diem-transaction-builder = { path = "../transaction-builder" }

[dev-dependencies]
serde_json = "1.0.62"
serde_json = "1.0.64"
tempfile = "3.2.0"

diem-config = { path = "../../config" }
10 changes: 5 additions & 5 deletions client/json-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ edition = "2018"
anyhow = "1.0.38"
async-trait = "0.1.42"
futures = "0.3.12"
hex = "0.4.2"
hex = "0.4.3"
rand = "0.8.3"
reqwest = { version = "0.11.1", features = ["blocking", "json"], default_features = false }
serde = { version = "1.0.123", default-features = false }
serde_json = "1.0.62"
tokio = { version = "1.2.0", features = ["full"] }
reqwest = { version = "0.11.2", features = ["blocking", "json"], default_features = false }
serde = { version = "1.0.125", default-features = false }
serde_json = "1.0.64"
tokio = { version = "1.3.0", features = ["full"] }

diem-crypto = { path = "../../crypto/crypto" }
bcs = "0.1.2"
Expand Down
6 changes: 3 additions & 3 deletions client/swiss-knife/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ edition = "2018"
[dependencies]
structopt = "0.3.21"
rand = "0.8.3"
hex = "0.4.2"
serde_json = "1.0.62"
serde = { version = "1.0.123", features = ["derive"] }
hex = "0.4.3"
serde_json = "1.0.64"
serde = { version = "1.0.125", features = ["derive"] }

bcs = "0.1.2"
diem-types = { path = "../../types" }
Expand Down
16 changes: 8 additions & 8 deletions client/transaction-builder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
[package]
name = "transaction-builder-generated"
version = "0.1.0"
name = "diem-transaction-builder"
version = "0.0.1"
authors = ["Diem Association <opensource@diem.com>"]
description = "Generated transaction builders"
repository = "https://github.com/diem/diem"
homepage = "https://diem.com"
license = "Apache-2.0"
publish = false
publish = ["crates-io"]
edition = "2018"

[dependencies]
bcs = "0.1.2"
once_cell = "1.7.0"
serde = { version = "1.0.123", features = ["derive"] }
once_cell = "1.7.2"
serde = { version = "1.0.125", features = ["derive"] }

move-core-types = { path = "../../language/move-core/types" }
diem-types = { path = "../../types" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
move-core-types = { path = "../../language/move-core/types", version = "0.0.1" }
diem-types = { path = "../../types", version = "0.0.1" }

proptest = { version = "1.0.0", optional = true }
proptest-derive = { version = "0.3.0", optional = true }
Expand All @@ -25,6 +24,7 @@ proptest-derive = { version = "0.3.0", optional = true }
proptest = "1.0.0"
proptest-derive = "0.3.0"
move-core-types = { path = "../../language/move-core/types", features = ["fuzzing"] }
diem-workspace-hack = { path = "../../common/workspace-hack" }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion common/bitvec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2018"
diem-workspace-hack = { path = "../workspace-hack" }
proptest = { version = "1.0.0", default-features = true, optional = true }
proptest-derive = { version = "0.3.0", optional = true }
serde = { version = "1.0.123", features = ["derive"] }
serde = { version = "1.0.125", features = ["derive"] }
serde_bytes = "0.11.5"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion common/crash-handler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ toml = "0.5.8"

diem-logger = { path = "../logger" }
diem-workspace-hack = { path = "../workspace-hack" }
serde = { version = "1.0.123", features = ["derive"] }
serde = { version = "1.0.125", features = ["derive"] }
6 changes: 3 additions & 3 deletions common/diemdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ edition = "2018"
[dependencies]
serde_yaml = "0.8.17"
serde-reflection = "0.3.2"
serde-generate = "0.18.0"
serde-generate = "0.19.1"
anyhow = "1.0.38"
regex = "1.4.3"
structopt = "0.3.21"
once_cell = "1.7.0"
once_cell = "1.7.2"

diem-workspace-hack = { path = "../workspace-hack" }

[dev-dependencies]
serde = { version = "1.0.123", features = ["derive"] }
serde = { version = "1.0.125", features = ["derive"] }
tempfile = "3.2.0"

[features]
Expand Down
8 changes: 4 additions & 4 deletions common/logger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ hostname = "0.3.1"
diem-log-derive = { path = "derive" }
diem-infallible = { path = "../infallible" }
diem-workspace-hack = { path = "../workspace-hack" }
once_cell = "1.7.0"
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.62"
prometheus = { version = "0.11.0", default-features = false }
once_cell = "1.7.2"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
prometheus = { version = "0.12.0", default-features = false }
2 changes: 1 addition & 1 deletion common/nibble/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
diem-workspace-hack = { path = "../workspace-hack" }
proptest = { version = "1.0.0", optional = true }
serde = { version = "1.0.123", features = ["derive"] }
serde = { version = "1.0.125", features = ["derive"] }

[features]
default = []
Expand Down
4 changes: 2 additions & 2 deletions common/short-hex-str/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ edition = "2018"

[dependencies]
mirai-annotations = "1.10.1"
serde = { version = "1.0.123", default-features = false }
serde = { version = "1.0.125", default-features = false }
static_assertions = "1.1.0"
thiserror = "1.0.24"

diem-workspace-hack = { path = "../workspace-hack" }

[dev-dependencies]
hex = "0.4.2"
hex = "0.4.3"
proptest = "1.0.0"
10 changes: 5 additions & 5 deletions common/trace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ edition = "2018"
[dependencies]
chrono = "0.4.19"
structopt = "0.3.21"
tokio = { version = "1.2.0", features = ["full"] }
serde_json = "1.0.62"
serde = "1.0.123"
tokio = { version = "1.3.0", features = ["full"] }
serde_json = "1.0.64"
serde = "1.0.125"
anyhow = "1.0.38"
reqwest = { version = "0.11.1", features = ["blocking", "json"], default_features = false }
once_cell = "1.7.0"
reqwest = { version = "0.11.2", features = ["blocking", "json"], default_features = false }
once_cell = "1.7.2"

diem-logger = { path = "../logger" }
diem-metrics = { path = "../metrics" }
Expand Down
Loading