[package] name = "secret-cosmwasm-storage" version = "1.1.11" authors = [ "Ethan Frey ", "SCRT Labs ", ] edition = "2021" description = "CosmWasm library with useful helpers for Storage patterns" repository = "https://github.com/scrtlabs/cosmwasm/tree/secret/packages/storage" license = "Apache-2.0" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = [] # This enables iterator functionality, as exposed in cosmwasm-std/iterator iterator = ["secret-cosmwasm-std/iterator"] [dependencies] # Uses the path when built locally; uses the given version from crates.io when published secret-cosmwasm-std = { version = "1.1.11", path = "../std", default-features = false } serde = { version = "1.0.103", default-features = false, features = [ "derive", "alloc", ] }