File tree Expand file tree Collapse file tree 3 files changed +1
-8
lines changed Expand file tree Collapse file tree 3 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -32,15 +32,14 @@ in the dependency tree. Otherwise conflicting C exports are created.
32
32
33
33
## cosmwasm-std features
34
34
35
- The libarary comes with the following features:
35
+ The library comes with the following features:
36
36
37
37
| Feature | Enabled by default | Description |
38
38
| ------------ | ------------------ | ------------------------------------------------------------------------- |
39
39
| iterator | x | Storage iterators |
40
40
| abort | x | A panic handler that aborts the contract execution with a helpful message |
41
41
| stargate | | Cosmos SDK 0.40+ features and IBC |
42
42
| staking | | Access to the staking module |
43
- | backtraces | | Add backtraces to errors (for unit testing) |
44
43
| cosmwasm_1_1 | | Features that require CosmWasm 1.1+ on the chain |
45
44
| cosmwasm_1_2 | | Features that require CosmWasm 1.2+ on the chain |
46
45
| cosmwasm_1_3 | | Features that require CosmWasm 1.3+ on the chain |
Original file line number Diff line number Diff line change 1
- #![ cfg_attr( feature = "backtraces" , feature( error_generic_member_access) ) ]
2
- #![ cfg_attr( feature = "backtraces" , feature( provide_any) ) ]
3
-
4
1
extern crate alloc;
5
2
6
3
// Exposed on all platforms
Original file line number Diff line number Diff line change 1
- #![ cfg_attr( feature = "backtraces" , feature( error_generic_member_access) ) ]
2
- #![ cfg_attr( feature = "backtraces" , feature( provide_any) ) ]
3
-
4
1
mod backend;
5
2
mod cache;
6
3
mod calls;
You can’t perform that action at this time.
0 commit comments