-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
102 lines (94 loc) · 4.66 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[workspace]
members = [
"contracts/dao-core",
"contracts/proposal/*",
"contracts/pre-propose/*",
"contracts/staking/*",
"contracts/voting/*",
"packages/*",
"test-contracts/*",
"ci/*",
"contracts/external/*"
]
exclude = ["ci/configs/"]
[workspace.package]
license = "BSD-3"
[profile.release.package.stake-cw20-external-rewards]
codegen-units = 1
incremental = false
[profile.release]
codegen-units = 1
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
panic = 'abort'
incremental = false
# Please do not disable these. Doing so will cause overflow checks in
# all workspace members to stop working. Overflows should be errors.
overflow-checks = true
[workspace.dependencies]
cosmwasm-std = { version = "1.1", features = ["ibc3"] }
cosmwasm-storage = { version = "1.1" }
cosmwasm-schema = { version = "1.1" }
cw-utils = "0.16"
thiserror = { version = "1.0.30" }
cw-storage-plus = "0.16"
cw2 = "0.16"
cw20 = "0.16"
cw721 = "0.16"
cw20-base = "0.16"
cw-multi-test = "0.16"
cw721-base = "0.16"
cw-controllers = "0.16"
anyhow = { version = "1.0.51"}
cw4-group = "0.16"
rand = "0.8"
cw4 = "0.16"
cw3 = "0.16"
serde = "1.0"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["derive"] }
wynd-utils = "0.4.1"
# One commit ahead of version 0.3.0. Allows initialization with an
# optional owner.
cw-ownable = { git = "https://github.com/steak-enjoyers/cw-plus-plus", rev = "50d4d9333305894457e5028072a0465f4635b15b" }
cw-admin-factory = { path = "./contracts/external/cw-admin-factory" }
cw-payroll-factory = { path = "./contracts/external/cw-payroll-factory" }
cw-vesting = { path = "./contracts/external/cw-vesting" }
dao-core = { path = "./contracts/dao-core" }
dao-proposal-single = { path = "./contracts/proposal/dao-proposal-single", version = "*" }
dao-proposal-multiple = { path = "./contracts/proposal/dao-proposal-multiple", version = "*" }
dao-proposal-condorcet = { path = "./contracts/proposal/dao-proposal-condorcet", version = "*" }
dao-pre-propose-single = { path = "./contracts/pre-propose/dao-pre-propose-single", version = "*" }
dao-pre-propose-multiple = { path = "./contracts/pre-propose/dao-pre-propose-multiple", version = "*" }
dao-pre-propose-approval-single = { path = "./contracts/pre-propose/dao-pre-propose-approval-single", version = "*" }
dao-pre-propose-approver = { path = "./contracts/pre-propose/dao-pre-propose-approver", version = "*" }
cw20-stake = { path = "./contracts/staking/cw20-stake", version = "*" }
dao-voting-cw4 = { path = "./contracts/voting/dao-voting-cw4", version = "*" }
dao-voting-cw20-staked = { path = "./contracts/voting/dao-voting-cw20-staked", version = "*" }
dao-voting-native-staked = { path = "./contracts/voting/dao-voting-native-staked", version = "*" }
dao-voting-cw721-staked = { path = "./contracts/voting/dao-voting-cw721-staked", version = "*" }
dao-voting-cw20-balance = { path = "./test-contracts/dao-voting-cw20-balance", version = "*" }
cw-denom = { path = "./packages/cw-denom", version = "*" }
cw-hooks = { path = "./packages/cw-hooks", version = "*" }
cw721-controllers = { path = "./packages/cw721-controllers", version = "*" }
dao-macros = { path = "./packages/dao-macros", version = "*" }
dao-pre-propose-base = { path = "./packages/dao-pre-propose-base", version = "*" }
dao-proposal-hooks = { path = "./packages/dao-proposal-hooks", version = "*" }
dao-proposal-sudo = { path = "./test-contracts/dao-proposal-sudo", version = "*" }
dao-testing = { path = "./packages/dao-testing", version = "*" }
dao-vote-hooks = { path = "./packages/dao-vote-hooks", version = "*" }
cw-paginate = { path = "./packages/cw-paginate", version = "*" }
dao-interface = { path = "./packages/dao-interface", version = "*" }
dao-voting = { path = "./packages/dao-voting", version = "*" }
# v1 dependencies. used for state migrations.
cw-core-v1 = { package = "cw-core", version = "0.1.0", git = "https://github.com/DA0-DA0/dao-contracts.git", tag = "v1.0.0" }
cw-proposal-single-v1 = { package = "cw-proposal-single", version = "0.1.0", git = "https://github.com/DA0-DA0/dao-contracts.git", tag = "v1.0.0" }
voting-v1 = { package = "voting", version = "0.1.0", git = "https://github.com/DA0-DA0/dao-contracts.git", tag = "v1.0.0" }
cw-utils-v1 = {package = "cw-utils", version = "0.13"}
cw20-stake-reward-distributor-v1 = { package = "stake-cw20-reward-distributor", version = "0.1.0", git = "https://github.com/DA0-DA0/dao-contracts.git", tag = "v1.0.0" }
cw20-stake-external-rewards-v1 = { package = "stake-cw20-external-rewards", version = "0.2.6", git = "https://github.com/DA0-DA0/dao-contracts.git", tag = "v1.0.0" }
cw20-stake-v1 = { package = "cw20-stake", version = "0.2.6", git = "https://github.com/DA0-DA0/dao-contracts.git", tag = "v1.0.0" }