File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description = "Procedural macro for osmosis-std"
3
3
edition = " 2021"
4
4
license = " MIT OR Apache-2.0"
5
5
name = " osmosis-std-derive"
6
- version = " 0.1.1 "
6
+ version = " 0.1.2 "
7
7
8
8
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9
9
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ pub fn derive_cosmwasm_ext(input: TokenStream) -> TokenStream {
35
35
type Error = cosmwasm_std:: StdError ;
36
36
37
37
fn try_from( binary: cosmwasm_std:: Binary ) -> Result <Self , Self :: Error > {
38
- use prost:: Message ;
38
+ use :: prost:: Message ;
39
39
Self :: decode( & binary[ ..] ) . map_err( |e| {
40
40
cosmwasm_std:: StdError :: ParseErr {
41
41
target_type: stringify!( #ident) . to_string( ) ,
Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ description = "Standard library for Osmosis with CosmWasm support included"
3
3
edition = " 2021"
4
4
license = " MIT OR Apache-2.0"
5
5
name = " osmosis-std"
6
- version = " 0.1.1 "
6
+ version = " 0.1.2 "
7
7
8
8
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9
9
10
10
[dependencies ]
11
11
cosmos-sdk-proto = {version = " 0.12.3" , default-features = false }
12
12
cosmwasm-std = {version = " 1.0.0" , features = [" stargate" ]}
13
13
osmosis-std-derive = {version = " 0.1.1" , path = " ../osmosis-std-derive" }
14
- prost = " 0.10.4"
15
- prost-types = " 0.10.1"
14
+ prost = { version = " 0.10.4" , default-features = false , features = [ " prost-derive " ]}
15
+ prost-types = { version = " 0.10.1" , default-features = false }
You can’t perform that action at this time.
0 commit comments