Skip to content

Commit 5ee44a5

Browse files
committed
Remove references to backtraces features
1 parent e4f1d21 commit 5ee44a5

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

docs/USING_COSMWASM_STD.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,14 @@ in the dependency tree. Otherwise conflicting C exports are created.
3232

3333
## cosmwasm-std features
3434

35-
The libarary comes with the following features:
35+
The library comes with the following features:
3636

3737
| Feature | Enabled by default | Description |
3838
| ------------ | ------------------ | ------------------------------------------------------------------------- |
3939
| iterator | x | Storage iterators |
4040
| abort | x | A panic handler that aborts the contract execution with a helpful message |
4141
| stargate | | Cosmos SDK 0.40+ features and IBC |
4242
| staking | | Access to the staking module |
43-
| backtraces | | Add backtraces to errors (for unit testing) |
4443
| cosmwasm_1_1 | | Features that require CosmWasm 1.1+ on the chain |
4544
| cosmwasm_1_2 | | Features that require CosmWasm 1.2+ on the chain |
4645
| cosmwasm_1_3 | | Features that require CosmWasm 1.3+ on the chain |

packages/std/src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#![cfg_attr(feature = "backtraces", feature(error_generic_member_access))]
2-
#![cfg_attr(feature = "backtraces", feature(provide_any))]
3-
41
extern crate alloc;
52

63
// Exposed on all platforms

packages/vm/src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
#![cfg_attr(feature = "backtraces", feature(error_generic_member_access))]
2-
#![cfg_attr(feature = "backtraces", feature(provide_any))]
3-
41
mod backend;
52
mod cache;
63
mod calls;

0 commit comments

Comments
 (0)