github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/dev/wasm/escrow/Cargo.toml (about) 1 [package] 2 name = "cw-escrow" 3 version = "0.10.0" 4 authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"] 5 edition = "2018" 6 license = "Apache-2.0" 7 description = "Simple CosmWasm contract for an escrow with arbiter and timeout" 8 repository = "https://github.com/CosmWasm/cosmwasm-examples" 9 10 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 11 12 [lib] 13 crate-type = ["cdylib", "rlib"] 14 15 [profile.release] 16 opt-level = 3 17 debug = false 18 rpath = false 19 lto = true 20 debug-assertions = false 21 codegen-units = 1 22 panic = 'abort' 23 incremental = false 24 overflow-checks = true 25 26 [features] 27 backtraces = ["cosmwasm-std/backtraces"] 28 29 [dependencies] 30 cosmwasm-std = "1.0.0-beta" 31 cosmwasm-storage = "1.0.0-beta" 32 schemars = "0.8" 33 thiserror = "1.0.23" 34 serde = { version = "1.0.103", default-features = false, features = ["derive"] } 35 36 [dev-dependencies] 37 cosmwasm-vm = "1.0.0-beta" 38 cosmwasm-schema = "1.0.0-beta"