2024-06-26 19:31:01 +00:00
|
|
|
[package]
|
2024-07-11 13:31:46 +00:00
|
|
|
name = "transfers-contract"
|
2024-06-26 19:31:01 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-07-11 13:31:46 +00:00
|
|
|
authors = ["Informal Systems <hello@informal.systems>"]
|
2024-06-26 19:31:01 +00:00
|
|
|
exclude = ["contract.wasm", "hash.txt"]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "schema"
|
|
|
|
path = "bin/schema.rs"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[profile.release]
|
2024-09-25 19:14:06 +00:00
|
|
|
opt-level = "z"
|
2024-06-26 19:31:01 +00:00
|
|
|
debug = false
|
|
|
|
rpath = false
|
|
|
|
lto = true
|
|
|
|
debug-assertions = false
|
|
|
|
codegen-units = 1
|
|
|
|
panic = 'abort'
|
|
|
|
incremental = false
|
|
|
|
overflow-checks = true
|
|
|
|
|
2024-07-18 23:34:31 +00:00
|
|
|
[features]
|
2024-07-30 17:55:52 +00:00
|
|
|
mock-sgx = ["quartz-common/mock-sgx-cw"]
|
2024-08-08 10:25:56 +00:00
|
|
|
library = []
|
2024-07-18 23:34:31 +00:00
|
|
|
|
2024-06-26 19:31:01 +00:00
|
|
|
[dependencies]
|
|
|
|
# external
|
|
|
|
sha2 = "0.10.8"
|
2024-09-25 19:14:06 +00:00
|
|
|
serde_json = { version = "1.0.122", default-features = false }
|
2024-08-08 10:25:56 +00:00
|
|
|
thiserror = { version = "1.0.63" }
|
2024-06-26 19:31:01 +00:00
|
|
|
|
|
|
|
# cosmwasm
|
2024-09-25 19:14:06 +00:00
|
|
|
cosmwasm-std = { version = "2.1.1", default-features = false, features = ["abort"] }
|
2024-08-08 10:25:56 +00:00
|
|
|
cosmwasm-schema = { version = "2.1.1", default-features = false }
|
2024-07-11 13:31:46 +00:00
|
|
|
cw-storage-plus = { version = "2.0.0", default-features = false }
|
2024-08-08 10:25:56 +00:00
|
|
|
cw-utils = { version = "2.0.0", default-features = false }
|
2024-06-26 19:31:01 +00:00
|
|
|
|
|
|
|
# quartz
|
2024-09-27 13:31:06 +00:00
|
|
|
quartz-common = { git = "ssh://git@github.com/informalsystems/cycles-quartz.git", features=["contract"]}
|
2024-08-08 10:25:56 +00:00
|
|
|
# patch indirect deps
|
2024-09-25 19:14:06 +00:00
|
|
|
getrandom = { version = "0.2.15", features = ["js"] }
|
2024-08-08 10:25:56 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
cw-multi-test = { version = "2.1.0", default-features = false }
|
|
|
|
serde_json = "1.0.122"
|