cycles-quartz/examples/transfers/contracts/Cargo.toml
Daniel Gushchyan 14a6913632
refactor: refactor repo as standard rust monorepo (#222)
Co-authored-by: hu55a1n1 <sufialhussaini@gmail.com>
2024-09-30 23:33:22 +04:00

53 lines
1.2 KiB
TOML

[workspace]
[package]
name = "transfers-contract"
version = "0.1.0"
edition = "2021"
authors = ["Informal Systems <hello@informal.systems>"]
exclude = ["contract.wasm", "hash.txt"]
[[bin]]
name = "schema"
path = "bin/schema.rs"
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
opt-level = "z"
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true
[features]
mock-sgx = ["quartz-common/mock-sgx-cw"]
library = []
[dependencies]
# external
sha2 = "0.10.8"
serde_json = { version = "1.0.122", default-features = false }
thiserror = { version = "1.0.63" }
# cosmwasm
cosmwasm-std = { version = "2.1.1", default-features = false, features = ["abort"] }
cosmwasm-schema = { version = "2.1.1", default-features = false }
cw-storage-plus = { version = "2.0.0", default-features = false }
cw-utils = { version = "2.0.0", default-features = false }
# quartz
quartz-common = { git = "ssh://git@github.com/informalsystems/cycles-quartz.git", features = ["contract"] }
# patch indirect deps
getrandom = { version = "0.2.15", features = ["js"] }
[dev-dependencies]
cw-multi-test = { version = "2.1.0", default-features = false }
serde_json = "1.0.122"