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 serde from 1.0.124 to 1.0.147 #838

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
150 changes: 78 additions & 72 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 @@ -14,7 +14,7 @@ anyhow = "1.0.38"
hex = "0.4.3"
rand = "0.8.3"
reqwest = { version = "0.11.2", features = ["blocking"], default-features = false }
serde = "1.0.124"
serde = "1.0.147"
serde_derive = "1.0.117"
structopt = "0.3.21"
tokio = { version = "1.3.0", features = ["full"] }
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 @@ -16,7 +16,7 @@ futures = "0.3.12"
hex = "0.4.3"
rand = "0.8.3"
reqwest = { version = "0.11.2", features = ["blocking", "json"], default_features = false }
serde = { version = "1.0.124", default-features = false }
serde = { version = "1.0.147", default-features = false }
serde_json = "1.0.64"
tokio = { version = "1.3.0", features = ["full"] }

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 @@ -14,7 +14,7 @@ structopt = "0.3.21"
rand = "0.8.3"
hex = "0.4.3"
serde_json = "1.0.64"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }

bcs = "0.1.2"
diem-types = { path = "../../types" }
Expand Down
2 changes: 1 addition & 1 deletion client/transaction-builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
bcs = "0.1.2"
once_cell = "1.7.2"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }

move-core-types = { path = "../../language/move-core/types", version = "0.0.1" }
diem-types = { path = "../../types", version = "0.0.1" }
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.124", features = ["derive"] }
serde = { version = "1.0.147", 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.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
2 changes: 1 addition & 1 deletion common/diemdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ once_cell = "1.7.2"
diem-workspace-hack = { path = "../workspace-hack" }

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

[features]
Expand Down
2 changes: 1 addition & 1 deletion common/logger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ diem-log-derive = { path = "derive" }
diem-infallible = { path = "../infallible" }
diem-workspace-hack = { path = "../workspace-hack" }
once_cell = "1.7.2"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", 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.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }

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

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

Expand Down
2 changes: 1 addition & 1 deletion common/trace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ chrono = "0.4.19"
structopt = "0.3.21"
tokio = { version = "1.3.0", features = ["full"] }
serde_json = "1.0.64"
serde = "1.0.124"
serde = "1.0.147"
anyhow = "1.0.38"
reqwest = { version = "0.11.2", features = ["blocking", "json"], default_features = false }
once_cell = "1.7.2"
Expand Down
8 changes: 4 additions & 4 deletions common/workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ regex = { version = "1.4.3", features = ["aho-corasick", "default", "memchr", "p
regex-syntax = { version = "0.6.22", features = ["default", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"] }
reqwest = { version = "0.11.2", features = ["__tls", "blocking", "default", "default-tls", "hyper-tls", "json", "native-tls", "native-tls-crate", "serde_json", "stream", "tokio-native-tls"] }
rusty-fork = { version = "0.3.0", features = ["default", "timeout", "wait-timeout"] }
serde = { version = "1.0.124", features = ["alloc", "default", "derive", "rc", "serde_derive", "std"] }
serde = { version = "1.0.147", features = ["alloc", "default", "derive", "rc", "serde_derive", "std"] }
serde_json = { version = "1.0.64", features = ["default", "indexmap", "preserve_order", "std"] }
standback = { version = "0.2.15", default-features = false, features = ["std"] }
subtle = { version = "2.4.0", default-features = false, features = ["std"] }
Expand Down Expand Up @@ -92,7 +92,7 @@ regex = { version = "1.4.3", features = ["aho-corasick", "default", "memchr", "p
regex-syntax = { version = "0.6.22", features = ["default", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"] }
reqwest = { version = "0.11.2", features = ["__tls", "blocking", "default", "default-tls", "hyper-tls", "json", "native-tls", "native-tls-crate", "serde_json", "stream", "tokio-native-tls"] }
rusty-fork = { version = "0.3.0", features = ["default", "timeout", "wait-timeout"] }
serde = { version = "1.0.124", features = ["alloc", "default", "derive", "rc", "serde_derive", "std"] }
serde = { version = "1.0.147", features = ["alloc", "default", "derive", "rc", "serde_derive", "std"] }
serde_json = { version = "1.0.64", features = ["default", "indexmap", "preserve_order", "std"] }
standback = { version = "0.2.15", default-features = false, features = ["std"] }
subtle = { version = "2.4.0", default-features = false, features = ["std"] }
Expand Down Expand Up @@ -139,7 +139,7 @@ regex = { version = "1.4.3", features = ["aho-corasick", "default", "memchr", "p
regex-syntax = { version = "0.6.22", features = ["default", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"] }
reqwest = { version = "0.11.2", features = ["__tls", "blocking", "default", "default-tls", "hyper-tls", "json", "native-tls", "native-tls-crate", "serde_json", "stream", "tokio-native-tls"] }
rusty-fork = { version = "0.3.0", features = ["default", "timeout", "wait-timeout"] }
serde = { version = "1.0.124", features = ["alloc", "default", "derive", "rc", "serde_derive", "std"] }
serde = { version = "1.0.147", features = ["alloc", "default", "derive", "rc", "serde_derive", "std"] }
serde_json = { version = "1.0.64", features = ["default", "indexmap", "preserve_order", "std"] }
standback = { version = "0.2.15", default-features = false, features = ["std"] }
subtle = { version = "2.4.0", default-features = false, features = ["std"] }
Expand Down Expand Up @@ -187,7 +187,7 @@ regex = { version = "1.4.3", features = ["aho-corasick", "default", "memchr", "p
regex-syntax = { version = "0.6.22", features = ["default", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"] }
reqwest = { version = "0.11.2", features = ["__tls", "blocking", "default", "default-tls", "hyper-tls", "json", "native-tls", "native-tls-crate", "serde_json", "stream", "tokio-native-tls"] }
rusty-fork = { version = "0.3.0", features = ["default", "timeout", "wait-timeout"] }
serde = { version = "1.0.124", features = ["alloc", "default", "derive", "rc", "serde_derive", "std"] }
serde = { version = "1.0.147", features = ["alloc", "default", "derive", "rc", "serde_derive", "std"] }
serde_json = { version = "1.0.64", features = ["default", "indexmap", "preserve_order", "std"] }
standback = { version = "0.2.15", default-features = false, features = ["std"] }
subtle = { version = "2.4.0", default-features = false, features = ["std"] }
Expand Down
2 changes: 1 addition & 1 deletion config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ get_if_addrs = { version = "0.5.3", default-features = false }
log = { version = "0.4.14", features = ["serde"] }
mirai-annotations = "1.10.1"
rand = "0.8.3"
serde = { version = "1.0.124", features = ["rc"], default-features = false }
serde = { version = "1.0.147", features = ["rc"], default-features = false }
serde_yaml = "0.8.17"
thiserror = "1.0.24"

Expand Down
2 changes: 1 addition & 1 deletion config/management/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.38"
hex = "0.4.3"
serde = { version = "1.0.124", features = ["rc"], default-features = false }
serde = { version = "1.0.147", features = ["rc"], default-features = false }
serde_yaml = "0.8.17"
structopt = "0.3.21"
thiserror = "1.0.24"
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 @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.38"
rand = "0.8.3"
serde = { version = "1.0.124", features = ["rc"], default-features = false }
serde = { version = "1.0.147", features = ["rc"], default-features = false }
structopt = "0.3.21"
thiserror = "1.0.24"
toml = { version = "0.5.8", default-features = false }
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 @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
base64 = "0.13.0"
serde = { version = "1.0.124", features = ["rc"], default-features = false }
serde = { version = "1.0.147", features = ["rc"], default-features = false }
thiserror = "1.0.24"

bcs = "0.1.2"
Expand Down
2 changes: 1 addition & 1 deletion config/management/operational/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.38"
hex = "0.4.3"
serde = { version = "1.0.124", features = ["rc"], default-features = false }
serde = { version = "1.0.147", features = ["rc"], default-features = false }
serde_json = "1.0.64"
structopt = "0.3.21"
thiserror = "1.0.24"
Expand Down
2 changes: 1 addition & 1 deletion consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ num-traits = { version = "0.2.14", default-features = false }
once_cell = "1.7.2"
proptest = { version = "1.0.0", optional = true }
rand = { version = "0.8.3", default-features = false }
serde = { version = "1.0.124", default-features = false }
serde = { version = "1.0.147", default-features = false }
serde_json = "1.0.64"
termion = { version = "1.5.6", default-features = false }
thiserror = "1.0.24"
Expand Down
2 changes: 1 addition & 1 deletion consensus/consensus-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2018"
anyhow = "1.0.38"
mirai-annotations = { version = "1.10.1", default-features = false }
proptest = { version = "1.0.0", optional = true }
serde = { version = "1.0.124", default-features = false }
serde = { version = "1.0.147", default-features = false }

executor-types = { path = "../../execution/executor-types" }
bcs = "0.1.2"
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 @@ -28,7 +28,7 @@ diem-temppath = { path = "../../common/temppath" }
diem-types = { path = "../../types" }
diem-vault-client = { path = "../../secure/storage/vault" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
serde = { version = "1.0.124", default-features = false }
serde = { version = "1.0.147", default-features = false }
thiserror = "1.0.24"

[dev-dependencies]
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 @@ proptest = { version = "1.0.0", optional = true }
proptest-derive = { version = "0.3.0", optional = true }
rand = "0.8.0"
rand_core = { version = "0.6.2", default-features = false }
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_bytes = "0.11.5"
serde-name = "0.1.1"
sha2 = "0.9.3"
Expand Down
2 changes: 1 addition & 1 deletion devtools/x-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ log = "0.4.14"
toml = "0.5.8"
once_cell = "1.7.2"
rental = "0.5.5"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
2 changes: 1 addition & 1 deletion devtools/x-lint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ guppy = "0.8.0"
hakari = "0.2.0"
once_cell = "1.7.2"
toml = "0.5.8"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
x-core = { path = "../x-core" }
2 changes: 1 addition & 1 deletion devtools/x/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "Apache-2.0"
[dependencies]
camino = "1.0.2"
determinator = "0.3.0"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.64"
structopt = "0.3.21"
anyhow = "1.0.38"
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 @@ -25,7 +25,7 @@ diem-temppath = { path = "../../common/temppath" }
diem-types = { path = "../../types" }
diem-vm = { path = "../../language/diem-vm" }
diem-workspace-hack = { path = "../../common/workspace-hack" }
serde = { version = "1.0.124", default-features = false }
serde = { version = "1.0.147", default-features = false }
storage-client = { path = "../../storage/storage-client" }
thiserror = "1.0.24"
# this is actually a dev-dependency (see "Conditional compilation of tests" in coding_guidelines.md)
Expand Down
2 changes: 1 addition & 1 deletion execution/executor-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
anyhow = "1.0.38"
serde = { version = "1.0.124", default-features = false }
serde = { version = "1.0.147", default-features = false }
thiserror = "1.0.24"

bcs = "0.1.2"
Expand Down
2 changes: 1 addition & 1 deletion execution/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fail = "0.4.0"
itertools = { version = "0.10.0", default-features = false }
once_cell = "1.7.2"
serde_json = "1.0.64"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }

consensus-types = { path = "../../consensus/consensus-types"}
executor-types = { path = "../executor-types" }
Expand Down
2 changes: 1 addition & 1 deletion json-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ hyper = "0.14.4"
once_cell = "1.7.2"
rand = "0.8.3"
serde_json = "1.0.64"
serde = { version = "1.0.124", features = ["derive"], default-features = false }
serde = { version = "1.0.147", features = ["derive"], default-features = false }
tokio = { version = "1.3.0", features = ["full"] }
warp = { version = "0.3.0", features = ["tls"] }
reqwest = { version = "0.11.2", features = ["blocking", "json"], default_features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion json-rpc/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.38"
hex = "0.4.3"
serde = { version = "1.0.124", default-features = false }
serde = { version = "1.0.147", default-features = false }
serde_json = "1.0.64"
prost = "0.7.0"

Expand Down
2 changes: 1 addition & 1 deletion language/compiler/bytecode-source-map/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ vm = { path = "../../vm" }
bcs = "0.1.2"
codespan = "0.8.0"
codespan-reporting = "0.8.0"
serde = { version = "1.0.124", default-features = false }
serde = { version = "1.0.147", default-features = false }

[features]
default = []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ anyhow = "1.0.38"
structopt = "0.3.21"
tempfile = "3.2.0"
handlebars = "3.5.3"
serde = { version = "1.0.124", default-features = false }
serde = { version = "1.0.147", default-features = false }
serde_json = "1.0.64"
once_cell = "1.7.2"

Expand Down
2 changes: 1 addition & 1 deletion language/diem-vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ move-vm-runtime = { path = "../move-vm/runtime" }
move-vm-types = { path = "../move-vm/types" }
vm = { path = "../vm" }
serde_json = "1.0.64"
serde = { version = "1.0.124", default-features = false }
serde = { version = "1.0.147", default-features = false }

[dev-dependencies]
proptest = "1.0.0"
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 @@ -19,7 +19,7 @@ proptest = { version = "1.0.0", default-features = false, optional = true }
proptest-derive = { version = "0.3.0", default-features = false, optional = true }
rand = "0.8.3"
ref-cast = "1.0.6"
serde = { version = "1.0.124", default-features = false }
serde = { version = "1.0.147", default-features = false }
serde_bytes = "0.11.5"
thiserror = "1.0.24"

Expand Down
2 changes: 1 addition & 1 deletion language/move-ir/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ edition = "2018"
[dependencies]
anyhow = "1.0.38"
codespan = { version = "0.8.0", features = ["serialization"] }
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
hex = "0.4.3"
once_cell = "1.7.2"

Expand Down
2 changes: 1 addition & 1 deletion language/move-model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ num = "0.4.0"
once_cell = "1.7.2"
regex = "1.4.3"
anyhow = "1.0.38"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }

[dev-dependencies]
datatest-stable = { path = "../../common/datatest-stable" }
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 @@ -37,7 +37,7 @@ num = "0.4.0"
pretty = "0.10.0"
rand = "0.8.3"
regex = "1.4.3"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.64"
simplelog = "0.9.0"
once_cell = "1.7.2"
Expand Down
2 changes: 1 addition & 1 deletion language/move-prover/abigen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bcs = "0.1.2"
log = "0.4.14"
anyhow = "1.0.38"
heck = "0.3.2"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }

[dev-dependencies]
codespan-reporting = "0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion language/move-prover/boogie-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ itertools = "0.10.0"
diem-types = { path = "../../../types" }
move-core-types = { path = "../../move-core/types" }
log = "0.4.14"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.64"
anyhow = "1.0.37"
once_cell = "1.7.2"
Expand Down
2 changes: 1 addition & 1 deletion language/move-prover/bytecode/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ itertools = "0.10.0"
diem-types = { path = "../../../types" }
move-core-types = { path = "../../move-core/types" }
log = "0.4.14"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.64"
once_cell = "1.7.2"

Expand Down
2 changes: 1 addition & 1 deletion language/move-prover/docgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ log = "0.4.14"
num = "0.4.0"
regex = "1.4.3"
anyhow = "1.0.38"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
once_cell = "1.7.2"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion language/move-prover/errmapgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ bcs = "0.1.2"
# external dependencies
log = "0.4.14"
anyhow = "1.0.38"
serde = { version = "1.0.124", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }

[dev-dependencies]
codespan-reporting = "0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion language/move-vm/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ mirai-annotations = "1.10.1"
once_cell = "1.7.2"
proptest = { version = "1.0.0", optional = true }
sha2 = "0.9.3"
serde = { version = "1.0.124", features = ["derive", "rc"] }
serde = { version = "1.0.147", features = ["derive", "rc"] }
smallvec = "1.6.1"

bcs = "0.1.2"
Expand Down
Loading