forked from CosmWasm/cw-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 1.27 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
[package]
name = "cw3-flex-multisig"
version = "1.1.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2021"
description = "Implementing cw3 with multiple voting patterns and dynamic groups"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
homepage = "https://cosmwasm.com"
documentation = "https://docs.cosmwasm.com"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
backtraces = ["cosmwasm-std/backtraces"]
# use library feature to disable all instantiate/execute/query exports
library = []
[dependencies]
cosmwasm-schema = { version = "1.1.0" }
cw-utils = "1.0.1"
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
cw3 = { path = "../../packages/cw3", version = "1.1.0" }
cw3-fixed-multisig = { path = "../cw3-fixed-multisig", version = "1.1.0", features = ["library"] }
cw4 = { path = "../../packages/cw4", version = "1.1.0" }
cw20 = { path = "../../packages/cw20", version = "1.1.0" }
cw-storage-plus = "1.0.1"
cosmwasm-std = { version = "1.1.0" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.23" }
[dev-dependencies]
cw4-group = { path = "../cw4-group", version = "1.1.0" }
cw-multi-test = "0.16.1"
cw20-base = { path = "../cw20-base", version = "1.1.0" }