[package]
name = "cybernet"
version = "0.3.0"
authors = ["C H <litvintech@gmail.com>"]
edition = "2021"
exclude = [
# Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication.
"contract.wasm",
"hash.txt",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib", "rlib"]
[features]
# for more explicit tests, cargo test --features=backtraces
backtraces = ["cosmwasm-std/backtraces"]
# use library feature to disable all instantiate/execute/query exports
library = []
pow-faucet = []
pow-registration = []
[package.metadata.scripts]
optimize = """docker run --rm -v "$(pwd)":/code \
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
cosmwasm/rust-optimizer:0.14.0
"""
[dependencies]
cosmwasm-schema = { workspace = true }
cosmwasm-std = { workspace = true, features = [
"abort",
"iterator",
"stargate"
] }
cw-storage-plus = { workspace = true }
cw2 = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
cw-utils = { workspace = true }
primitive-types = { version = "0.12.0", default-features = false }
sp-core-hashing = { version = "13.0.0", default-features = false }
substrate-fixed = { version = "0.5.9", default-features = false }
scale-info = { version = "2.0.0", default-features = false }
cyber-std = { workspace = true }
semver = { workspace = true }
[dev-dependencies]
cyber-std = { workspace = true }
log = { workspace = true }
rand = { version = "0.8.4" }
cw-storage-gas-meter = "1.0.0"
cw-cyber/contracts/cybernet/Cargo.toml
ฯ 0.0%