-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
172 lines (159 loc) · 7.56 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
[workspace]
exclude = ["ci/configs/", "wasmvm/libwasmvm"]
members = [
"./contracts/dao-dao-core/",
"./contracts/external/cw-admin-factory/",
"./contracts/proposal/*",
"./contracts/pre-propose/*",
"./contracts/staking/*",
# "./contracts/test/*",
"./contracts/voting/*",
"./packages/*",
# "./manager/"
# "ci/*",
]
resolver = "2"
[workspace.package]
edition = "2021"
license = "BSD-3-Clause"
repository = "https://github.com/DA0-DA0/dao-contracts"
version = "2.4.0"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
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]
anyhow = { version = "1.0" }
assert_matches = "1.5"
cosm-orc = { version = "4.0" }
cosm-tome = "0.2"
# cosmwasm-schema = { version = "1.1.11", git = "https://github.com/scrtlabs/cosmwasm" }
cw-controllers = "1.1"
cw-multi-test = "0.18"
cw-storage-plus = { version = "1.1" }
cw-utils = "1.0"
cw2 = "1.1"
cw20 = "1.1"
cw20-base = "1.1"
cw3 = "1.1"
cw4 = { path = "./packages/cw4-1.1.2/" }
cw4-group = { path = "./packages/cw4-group-1.1.2/" }
cw721 = "0.18"
cw721-base = "0.18"
env_logger = "0.10"
once_cell = "1.18"
osmosis-std = { path = "./packages/osmosis-std-0.21.0/" }
osmosis-std-derive = { path = "./packages/osmosis-std-derive-0.20.1/" }
osmosis-test-tube = { path = "./packages/osmosis-test-tube-20.1.2/" }
# osmosis-std = "0.22.0"
# osmosis-std-derive = "0.20.1"
# osmosis-test-tube = "22.1.0"
proc-macro2 = "1.0"
prost = { version = "0.12.3", features = ["prost-derive"] }
prost-types = { version = "0.12.3", default-features = false }
quote = "1.0"
rand = "0.8"
# schemars = "0.8"
# serde = { version = "1.0", default-features = false, features = ["derive"] }
serde-cw-value = "0.7"
serde_json = "1.0"
serde_yaml = "0.9"
sg-multi-test = "3.1.0"
sg-std = "3.1.0"
sg721 = "3.1.0"
sg721-base = "3.1.0"
syn = { version = "1.0", features = ["derive"] }
test-context = "0.1"
# thiserror = { version = "1.0" }
wynd-utils = "0.4"
bincode = "1.3.3"
# One commit ahead of version 0.3.0. Allows initialization with an
# optional owner.
cw-ownable = { path = "./packages/cw-ownable-0.5.1/" }
# cw-ownable = "0.5"
cw-admin-factory = { path = "./contracts/external/cw-admin-factory", version = "2.4.0" }
cw-denom = { path = "./packages/cw-denom", version = "2.4.0" }
cw-hooks = { path = "./packages/cw-hooks", version = "2.4.0" }
cw-paginate-storage = { path = "./packages/cw-paginate-storage", version = "2.4.0" }
cw-payroll-factory = { path = "./contracts/external/cw-payroll-factory", version = "2.4.0" }
cw-stake-tracker = { path = "./packages/cw-stake-tracker", version = "2.4.0" }
cw-tokenfactory-issuer = { path = "./contracts/external/cw-tokenfactory-issuer", version = "2.4.0" }
cw-tokenfactory-types = { path = "./packages/cw-tokenfactory-types", version = "2.4.0", default-features = false }
cw-vesting = { path = "./contracts/external/cw-vesting", version = "2.4.0" }
cw-wormhole = { path = "./packages/cw-wormhole", version = "2.4.0" }
snip20-stake = { path = "./contracts/staking/snip20-stake", version = "2.4.0" }
snip721-controllers = { path = "./packages/snip721-controllers", version = "2.4.0" }
snip721-roles = { path = "./contracts/external/snip721-roles", version = "2.4.0" }
dao-snip721-extensions = { path = "./packages/dao-snip721-extensions", version = "2.4.0" }
dao-dao-core = { path = "./contracts/dao-dao-core", version = "2.4.0" }
dao-dao-macros = { path = "./packages/dao-dao-macros", version = "2.4.0" }
dao-hooks = { path = "./packages/dao-hooks", version = "2.4.0" }
dao-interface = { path = "./packages/dao-interface", version = "2.4.0" }
dao-pre-propose-approval-single = { path = "./contracts/pre-propose/dao-pre-propose-approval-single", version = "2.4.0" }
dao-pre-propose-approver = { path = "./contracts/pre-propose/dao-pre-propose-approver", version = "2.4.0" }
dao-pre-propose-base = { path = "./packages/dao-pre-propose-base", version = "2.4.0" }
dao-pre-propose-multiple = { path = "./contracts/pre-propose/dao-pre-propose-multiple", version = "2.4.0" }
dao-pre-propose-single = { path = "./contracts/pre-propose/dao-pre-propose-single", version = "2.4.0" }
dao-proposal-condorcet = { path = "./contracts/proposal/dao-proposal-condorcet", version = "2.4.0" }
dao-proposal-hook-counter = { path = "./contracts/test/dao-proposal-hook-counter", version = "2.4.0" }
dao-proposal-multiple = { path = "./contracts/proposal/dao-proposal-multiple", version = "2.4.0" }
dao-proposal-single = { path = "./contracts/proposal/dao-proposal-single", version = "2.4.0" }
dao-proposal-sudo = { path = "./contracts/test/dao-proposal-sudo", version = "2.4.0" }
dao-test-custom-factory = { path = "./contracts/test/dao-test-custom-factory", version = "2.4.0" }
dao-testing = { path = "./packages/dao-testing", version = "2.4.0" }
dao-voting = { path = "./packages/dao-voting", version = "2.4.0" }
dao-voting-cw20-balance = { path = "./contracts/test/dao-voting-cw20-balance", version = "2.4.0" }
dao-voting-snip20-staked = { path = "./contracts/voting/dao-voting-snip20-staked", version = "2.4.0" }
dao-voting-cw4 = { path = "./contracts/voting/dao-voting-cw4", version = "2.4.0" }
dao-voting-snip721-roles = { path = "./contracts/voting/dao-voting-snip721-roles", version = "2.4.0" }
dao-voting-snip721-staked = { path = "./contracts/voting/dao-voting-snip721-staked", version = "2.4.0" }
dao-voting-token-staked = { path = "./contracts/voting/dao-voting-token-staked", version = "2.4.0" }
# v1 dependencies. used for state migrations.
cw-core-v1 = { package = "cw-core", version = "0.1.0" }
cw-proposal-single-v1 = { package = "cw-proposal-single", version = "0.1.0" }
cw-utils-v1 = { package = "cw-utils", version = "0.13" }
cw20-stake-external-rewards-v1 = { package = "stake-cw20-external-rewards", version = "0.2.6" }
cw20-stake-reward-distributor-v1 = { package = "stake-cw20-reward-distributor", version = "0.1.0" }
cw20-stake-v1 = { package = "cw20-stake", version = "0.2.6" }
cw20-staked-balance-voting-v1 = { package = "cw20-staked-balance-voting", version = "0.1.0" }
cw4-voting-v1 = { package = "cw4-voting", version = "0.1.0" }
stake-cw20-v03 = { package = "stake-cw20", version = "0.2.6" }
voting-v1 = { package = "dao-voting", version = "0.1.0" }
# cosmwasm-storage = { version = "1.1.11", package = "secret-cosmwasm-storage", default-features = false }
secret-utils = { path = "./packages/utils/" }
# cosmwasm-std = { version = "1.1.11", package = "secret-cosmwasm-std", default-features = false }
secret-toolkit = { version = "0.10.0", default-features = false, features = [
"utils",
"serialization",
"viewing-key",
"permit",
"storage",
"snip20",
"snip721",
] }
secret-storage-plus = { path = "./packages/storage-plus/" }
secret-cw-controllers = { path = "./packages/controllers/" }
secret-cw2 = { path = "./packages/cw2/" }
secret-multi-test = { path = "./packages/multi-test/" }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "1.1.11", features = [
"stargate",
"staking",
"ibc3",
"random",
] }
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "1.1.11" }
schemars = "0.8.12"
serde = { version = "1.0.158", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.21" }
cosmwasm-schema = { git = "https://github.com/scrtlabs/cosmwasm/", branch = "secret" }
snip20-reference-impl = { path = "./contracts/external/snip20-reference-impl/" }
snip721-reference-impl = { path = "./contracts/external/snip721-reference-impl/" }
cosmos-sdk-proto = { version = "0.20.0", default-features = false }