@@ -16,20 +16,22 @@ iterator = ["secret-cosmwasm-std/iterator"]
16
16
# staking exposes bindings to a required staking moudle in the runtime, via new
17
17
# CosmosMsg types, and new QueryRequest types. This should only be enabled on contracts
18
18
# that require these types, so other contracts can be used on systems with eg. PoA consensus
19
- staking = []
19
+ staking = [" secret-cosmwasm-std/staking " ]
20
20
# backtraces provides much better context at runtime errors (in non-wasm code)
21
21
# at the cost of a bit of code size and performance.
22
22
# This feature requires Rust nightly because it depends on the unstable backtrace feature.
23
- backtraces = []
23
+ backtraces = [" secret-cosmwasm-std/backtraces " ]
24
24
# stargate enables stargate-dependent messages and queries, like raw protobuf messages
25
25
# as well as ibc-related functionality
26
- stargate = []
26
+ stargate = [" secret-cosmwasm-std/stargate " ]
27
27
# ibc3 extends ibc messages with ibc-v3 only features. This should only be enabled on contracts
28
28
# that require these types. Without this, they get the smaller ibc-v1 API.
29
- ibc3 = [" stargate" ]
29
+ ibc3 = [" secret-cosmwasm-std/ibc3 " , " stargate" ]
30
30
# This feature makes `BankQuery::Supply` available for the contract to call, but requires
31
31
# the host blockchain to run CosmWasm `1.1.0` or higher.
32
32
cosmwasm_1_1 = [" secret-cosmwasm-std/cosmwasm_1_1" ]
33
33
34
+ random = [" secret-cosmwasm-std/random" ]
35
+
34
36
[dependencies ]
35
- secret-cosmwasm-std = { path = " ../std" }
37
+ secret-cosmwasm-std = { path = " ../std" }
0 commit comments