Skip to content

Commit 9e489c9

Browse files
author
Cashmaney
authored
Merge pull request #20 from scrtlabs/Cashmaney-patch-2
Update Cargo.toml
2 parents 9e5adb4 + ee94039 commit 9e489c9

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

packages/std-compat/Cargo.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,22 @@ iterator = ["secret-cosmwasm-std/iterator"]
1616
# staking exposes bindings to a required staking moudle in the runtime, via new
1717
# CosmosMsg types, and new QueryRequest types. This should only be enabled on contracts
1818
# that require these types, so other contracts can be used on systems with eg. PoA consensus
19-
staking = []
19+
staking = ["secret-cosmwasm-std/staking"]
2020
# backtraces provides much better context at runtime errors (in non-wasm code)
2121
# at the cost of a bit of code size and performance.
2222
# This feature requires Rust nightly because it depends on the unstable backtrace feature.
23-
backtraces = []
23+
backtraces = ["secret-cosmwasm-std/backtraces"]
2424
# stargate enables stargate-dependent messages and queries, like raw protobuf messages
2525
# as well as ibc-related functionality
26-
stargate = []
26+
stargate = ["secret-cosmwasm-std/stargate"]
2727
# ibc3 extends ibc messages with ibc-v3 only features. This should only be enabled on contracts
2828
# that require these types. Without this, they get the smaller ibc-v1 API.
29-
ibc3 = ["stargate"]
29+
ibc3 = ["secret-cosmwasm-std/ibc3", "stargate"]
3030
# This feature makes `BankQuery::Supply` available for the contract to call, but requires
3131
# the host blockchain to run CosmWasm `1.1.0` or higher.
3232
cosmwasm_1_1 = ["secret-cosmwasm-std/cosmwasm_1_1"]
3333

34+
random = ["secret-cosmwasm-std/random"]
35+
3436
[dependencies]
35-
secret-cosmwasm-std = { path = "../std" }
37+
secret-cosmwasm-std = { path = "../std" }

0 commit comments

Comments
 (0)