diff --git a/Cargo.lock b/Cargo.lock index 324d7e33e415..781096927234 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2540,7 +2540,7 @@ dependencies = [ "once_cell 1.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)", - "serde-generate 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde-generate 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde-reflection 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_yaml 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)", "structopt 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", @@ -5221,7 +5221,7 @@ dependencies = [ [[package]] name = "serde-generate" -version = "0.13.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -6278,7 +6278,7 @@ dependencies = [ "libra-types 0.1.0", "libra-workspace-hack 0.1.0", "move-core-types 0.1.0", - "serde-generate 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde-generate 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde-reflection 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "serde_yaml 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)", "structopt 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", @@ -7199,7 +7199,7 @@ dependencies = [ "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" "checksum serde 1.0.115 (registry+https://github.com/rust-lang/crates.io-index)" = "e54c9a88f2da7238af84b5101443f0c0d0a3bbdc455e34a5c9497b1903ed55d5" -"checksum serde-generate 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6e1fb58f42503dd83e238e785449ae2a790955b963c6c40aa611d96511b67621" +"checksum serde-generate 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e7da7bb1d64488b98875721546be3b734ed7bc23e8d2d80d4d29a7e429bf763c" "checksum serde-name 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "92bb32dbe1df50291d7d00b5e573acb2c70b783baf3d1bce2d19c86be11c709e" "checksum serde-reflection 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d0724ee4d089608c6f22bb25058e73e56d8ecd6506628b635b5a2ed6c94c9e21" "checksum serde-value 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" diff --git a/common/libradoc/Cargo.toml b/common/libradoc/Cargo.toml index 37a55440f25c..ff80ce02d86d 100644 --- a/common/libradoc/Cargo.toml +++ b/common/libradoc/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] serde_yaml = "0.8.13" serde-reflection = "0.3.1" -serde-generate = "0.13.0" +serde-generate = "0.14.0" anyhow = "1.0.32" regex = "1.3.9" structopt = "0.3.17" diff --git a/language/transaction-builder/generator/Cargo.toml b/language/transaction-builder/generator/Cargo.toml index cfc6266d01c9..9b466f52a969 100644 --- a/language/transaction-builder/generator/Cargo.toml +++ b/language/transaction-builder/generator/Cargo.toml @@ -14,7 +14,7 @@ heck = "0.3.1" structopt = "0.3.17" textwrap = "0.12.1" serde-reflection = "0.3.1" -serde-generate = "0.13.0" +serde-generate = "0.14.0" serde_yaml = "0.8.13" libra-types = { path = "../../../types", version = "0.1.0" }