-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (41 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "cw-atomic-swap"
version = "0.1.0"
authors = ["[email protected]"]
edition = "2021"
description = "A CosmWasm smart contract to allow users to perform atomic swaps on the Osmosis chain"
repository = "https://github.com/0xstepit/cw-atomic-swap"
license = "./LICENSE"
readme = "README.md"
[lib]
crate-type = ["cdylib", "rlib"]
doctest = false
[features]
library = []
[profile.release]
opt-level = 3
rpath = false
lto = true
debug = false
debug-assertions = false
codegen-units = 1
incremental = false
overflow-checks = true
panic = 'abort'
[dependencies]
cosmwasm-std = { version = "1", features = ["cosmwasm_1_1"] }
cosmwasm-schema = "1"
cw-storage-plus = "0.15"
cw2 = "1"
schemars = "0.8.17"
serde = { version = "1.0.200", default-features = false, features = ["derive"] }
serde-json-wasm = "1.0.1"
thiserror = "1.0"
osmosis-std = "0.24"
serde_json = "1.0.85"
prost = "0.12.4"
[dev-dependencies]
anyhow = "1"
test-tube = "0.6.0"
osmosis-test-tube = "24.0.1"
cw-multi-test = { version = "0.20.0", features = ["cosmwasm_1_1"] }