forked from scrtlabs/SecretSwap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 1.33 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
[package]
name = "secretswap-factory"
version = "0.1.0"
authors = ["Terraform Labs, PTE."]
edition = "2018"
description = "A secretswap factory contract - auto pair contract generator and also directory for all pairs"
license = "MIT"
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]
default = []
# for quicker tests, cargo test --lib
# for more explicit tests, cargo test --features=backtraces
backtraces = ["cosmwasm-std/backtraces"]
[dependencies]
secretswap = { path = "../../packages/secretswap", default-features = false, version = "0.1.0" }
secret-toolkit = { git = "https://github.com/enigmampc/secret-toolkit", branch = "debug-print" }
cosmwasm-storage = { git = "https://github.com/enigmampc/SecretNetwork", rev = "004c6bc" }
cosmwasm-std = { git = "https://github.com/enigmampc/SecretNetwork", rev = "004c6bc" }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
#
#[dev-dependencies]
#cosmwasm-vm = { version = "0.10.1", default-features = false, features = ["iterator"] }
#cosmwasm-schema = "0.10.1"