Skip to content

Commit

Permalink
v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
iboss-ptk committed Jul 25, 2022
1 parent f875469 commit e7b7584
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/osmosis-std-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "Procedural macro for osmosis-std"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "osmosis-std-derive"
version = "0.1.1"
version = "0.1.2"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion packages/osmosis-std-derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub fn derive_cosmwasm_ext(input: TokenStream) -> TokenStream {
type Error = cosmwasm_std::StdError;

fn try_from(binary: cosmwasm_std::Binary) -> Result<Self, Self::Error> {
use prost::Message;
use ::prost::Message;
Self::decode(&binary[..]).map_err(|e| {
cosmwasm_std::StdError::ParseErr {
target_type: stringify!(#ident).to_string(),
Expand Down
6 changes: 3 additions & 3 deletions packages/osmosis-std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ description = "Standard library for Osmosis with CosmWasm support included"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "osmosis-std"
version = "0.1.1"
version = "0.1.2"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cosmos-sdk-proto = {version = "0.12.3", default-features = false}
cosmwasm-std = {version = "1.0.0", features = ["stargate"]}
osmosis-std-derive = {version = "0.1.1", path = "../osmosis-std-derive"}
prost = "0.10.4"
prost-types = "0.10.1"
prost = {version = "0.10.4", default-features = false, features = ["prost-derive"]}
prost-types = {version = "0.10.1", default-features = false}

0 comments on commit e7b7584

Please sign in to comment.