-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
104 lines (97 loc) · 3.8 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
[workspace]
members = ["contracts/*", "packages/*", "scripts"]
resolver = "2"
[workspace.package]
edition = "2021"
license = "GPL-3.0-or-later"
license-file = "LICENSE"
repository = "https://github.com/Arena-DAO/arena-smart-contracts"
version = "2.3.1"
[workspace.metadata]
documentation = "https://docs.arenadao.org"
issues = "https://github.com/arena-dao/arena-smart-contracts/issues"
[profile.release]
strip = true
codegen-units = 1
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
panic = 'abort'
incremental = false
overflow-checks = true
[workspace.dependencies]
cosmwasm-std = { version = "1.5.9", features = ["cosmwasm_1_4"] }
cosmwasm-storage = "1.5.2"
cosmwasm-schema = "1.5.9"
cw-utils = "1.0.3"
thiserror = "1.0.63"
cw-storage-plus = "1.2.0"
cw-multi-test = { version = "1.2.0", features = ["cosmwasm_1_4"] }
cw2 = "1.1.2"
cw20 = "1.1.2"
cw721 = "0.18.0"
cw20-base = { version = "1.1.2", features = ["library"] }
cw721-base = { version = "0.18", features = ["library"] }
anyhow = "1.0.95"
cw4-group = { version = "1.1.2", features = ["library"] }
cw4 = "1.1.2"
serde = { version = "1.0.209", default-features = false, features = ["derive"] }
cw-paginate = "0.2.1"
cw-ownable = "0.5.1"
cw-address-like = "1.0.4"
itertools = "0.14.0"
cw-orch = "0.24.1"
semver = "1.0.23"
rust_decimal = "1.36.0"
rust_decimal_macros = "1.36.0"
serde_json = "1.0.128"
sha2 = "0.10.8"
#arena_dao dependencies
cw-competition-base = { path = "./packages/cw-competition-base" }
cw-balance = { path = "./packages/cw-balance" }
arena-interface = { path = "./packages/arena-interface" }
orch-interface = { path = "./packages/orch-interface" }
glicko_2 = { path = "./packages/glicko_2" }
arena-core = { path = "./contracts/arena-core" }
arena-discord-identity = { path = "./contracts/arena-discord-identity" }
arena-escrow = { path = "./contracts/arena-escrow" }
arena-group = { path = "./contracts/arena-group" }
arena-wager-module = { path = "./contracts/arena-wager-module" }
arena-league-module = { path = "./contracts/arena-league-module" }
arena-tournament-module = { path = "./contracts/arena-tournament-module" }
arena-competition-enrollment = { path = "./contracts/arena-competition-enrollment" }
arena-token-gateway = { path = "./contracts/arena-token-gateway" }
arena-payment-registry = { path = "./contracts/arena-payment-registry" }
#dao dependencies
dao-interface = { git = "https://github.com/Arena-DAO/dao-contracts", branch = "fork/cw-orch-teams" }
dao-cw-orch = { git = "https://github.com/Arena-DAO/dao-contracts", branch = "fork/cw-orch-teams" }
cw-vesting = { git = "https://github.com/Arena-DAO/dao-contracts", branch = "fork/cw-orch-teams", features = [
"library",
] }
cw-payroll-factory = { git = "https://github.com/Arena-DAO/dao-contracts", branch = "fork/cw-orch-teams", features = [
"library",
] }
dao-proposal-multiple = { git = "https://github.com/Arena-DAO/dao-contracts", branch = "fork/cw-orch-teams", features = [
"library",
] }
dao-proposal-single = { git = "https://github.com/Arena-DAO/dao-contracts", branch = "fork/cw-orch-teams", features = [
"library",
] }
dao-pre-propose-single = { git = "https://github.com/Arena-DAO/dao-contracts", branch = "fork/cw-orch-teams", features = [
"library",
] }
dao-voting = { git = "https://github.com/Arena-DAO/dao-contracts", branch = "fork/cw-orch-teams" }
dao-voting-cw4 = { git = "https://github.com/Arena-DAO/dao-contracts", branch = "fork/cw-orch-teams", features = [
"library",
] }
dao-proposal-sudo = { git = "https://github.com/Arena-DAO/dao-contracts", branch = "fork/cw-orch-teams", features = [
"library",
] }
dao-pre-propose-base = { git = "https://github.com/Arena-DAO/dao-contracts", branch = "fork/cw-orch-teams", features = [
"library",
] }
dao-dao-core = { git = "https://github.com/Arena-DAO/dao-contracts", branch = "fork/cw-orch-teams", features = [
"library",
] }