diff --git a/Cargo.lock b/Cargo.lock index a6bf10ca..8ce5a103 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -933,9 +933,9 @@ dependencies = [ [[package]] name = "prost" -version = "0.12.1" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4fdd22f3b9c31b53c060df4a0613a1c7f062d4115a2b984dd15b1858f7e340d" +checksum = "146c289cda302b98a28d40c8b3b90498d6e526dd24ac2ecea73e4e491685b94a" dependencies = [ "bytes", "prost-derive", @@ -965,9 +965,9 @@ dependencies = [ [[package]] name = "prost-derive" -version = "0.12.1" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "265baba7fabd416cf5078179f7d2cbeca4ce7a9041111900675ea7c4cb8a4c32" +checksum = "efb6c9a1dd1def8e2124d17e83a20af56f1570d6c2d2bd9e266ccb768df3840e" dependencies = [ "anyhow", "itertools", diff --git a/README.md b/README.md index df5bf819..062b013c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Desmos Bindings +# Contracts Bindings -This repository contains the CosmWasm bindings packages that allows the interaction with the Desmos chain features from smart contracts. +Desmos contracts bindings is a set of packages that allows you to create CosmWasm smart contracts that interacts directly with the Desmos Network custom modules. ![GitHub](https://img.shields.io/github/license/desmos-labs/desmos-bindings.svg) [![desmos-bindings on crates.io](https://img.shields.io/crates/v/desmos-bindings.svg)](https://crates.io/crates/desmos-bindings) [![codecov](https://codecov.io/gh/desmos-labs/desmos-bindings/branch/main/graph/badge.svg?token=TT3qCDd957)](https://codecov.io/gh/desmos-labs/desmos-bindings) diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index 605e70cd..6f04b608 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -25,7 +25,7 @@ chrono = {version = "0.4.31", default-features = false} cosmwasm-std = { version = "1.5.0", features = ["stargate"]} cosmwasm-schema = "1.5.0" serde = { version = "1.0.192", default-features = false, features = ["derive"] } -prost = {version = "0.12.1", default-features = false, features = ["prost-derive"]} +prost = {version = "0.12.3", default-features = false, features = ["prost-derive"]} prost-types = {version = "0.12.1", default-features = false} serde-cw-value = "0.7.0" desmos-mock = { version = "3.0.0", path = "../mock" } diff --git a/packages/proto-build/Cargo.toml b/packages/proto-build/Cargo.toml index 129d7f82..878d4b4b 100644 --- a/packages/proto-build/Cargo.toml +++ b/packages/proto-build/Cargo.toml @@ -10,7 +10,7 @@ itertools = "0.11.0" log = "0.4.20" pretty_env_logger = "0.5.0" prettyplease = "0.2.15" -prost = "0.12.1" +prost = "0.12.3" prost-build = "0.12.1" prost-types = "0.12.1" quote = "1.0.33"