diff --git a/borsh-rs/Cargo.lock b/borsh-rs/Cargo.lock index d9b7573e3..9dc342b5f 100644 --- a/borsh-rs/Cargo.lock +++ b/borsh-rs/Cargo.lock @@ -84,7 +84,7 @@ name = "benchmarks" version = "0.1.0" dependencies = [ "bincode 1.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "borsh 0.2.3", + "borsh 0.2.4", "criterion 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "rand_xorshift 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -121,22 +121,22 @@ dependencies = [ [[package]] name = "borsh" -version = "0.2.3" +version = "0.2.4" dependencies = [ - "borsh-derive 0.2.3", + "borsh-derive 0.2.4", ] [[package]] name = "borsh-derive" -version = "0.2.3" +version = "0.2.4" dependencies = [ - "borsh-derive-internal 0.2.3", + "borsh-derive-internal 0.2.4", "syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "borsh-derive-internal" -version = "0.2.3" +version = "0.2.4" dependencies = [ "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/borsh-rs/borsh-derive-internal/Cargo.toml b/borsh-rs/borsh-derive-internal/Cargo.toml index 2c86698e0..979ea004e 100644 --- a/borsh-rs/borsh-derive-internal/Cargo.toml +++ b/borsh-rs/borsh-derive-internal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "borsh-derive-internal" -version = "0.2.3" +version = "0.2.4" authors = ["Near Inc "] edition = "2018" license = "Apache-2.0" diff --git a/borsh-rs/borsh-derive/Cargo.toml b/borsh-rs/borsh-derive/Cargo.toml index 135cf37d1..83a0494d0 100644 --- a/borsh-rs/borsh-derive/Cargo.toml +++ b/borsh-rs/borsh-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "borsh-derive" -version = "0.2.3" +version = "0.2.4" authors = ["Near Inc "] edition = "2018" license = "Apache-2.0" @@ -16,6 +16,6 @@ Binary Object Representation Serializer for Hashing proc-macro = true [dependencies] -borsh-derive-internal = { path = "../borsh-derive-internal" , version="0.2.3"} +borsh-derive-internal = { path = "../borsh-derive-internal" , version="0.2.4"} syn = {version = "0.15.34", features = ["full", "fold"] } diff --git a/borsh-rs/borsh/Cargo.toml b/borsh-rs/borsh/Cargo.toml index 5245e6ab3..656074c1d 100644 --- a/borsh-rs/borsh/Cargo.toml +++ b/borsh-rs/borsh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "borsh" -version = "0.2.3" +version = "0.2.4" authors = ["Near Inc "] edition = "2018" license = "Apache-2.0" @@ -13,7 +13,7 @@ Binary Object Representation Serializer for Hashing """ [dependencies] -borsh-derive = { path = "../borsh-derive", version = "0.2.3" } +borsh-derive = { path = "../borsh-derive", version = "0.2.4" } [features] default = ["std"]