-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
78 lines (71 loc) · 2.5 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
[workspace]
members = ["scripts", "packages/*", "nibiru-std", "contracts/*"]
exclude = ["packages/msig-ez"]
resolver = "2"
package.version = "0.1.0"
package.homepage = "https://github.com/NibiruChain/nibiru-wasm"
package.repository = "https://github.com/NibiruChain/nibiru-wasm"
package.edition = "2021"
# Dependencies can be inherited from a workspace by specifying the dependency in
# the `[workspace.dependencies]` table. To use workspace crates, add them to the
# `[dependencies]` table with `workspace = true`.
# ```
# anyhow = { workspace = true }
# ```
[workspace.dependencies]
# serde
serde = { version = "1.0.189", default-features = false, features = ["derive"] }
serde_json = "1.0.108"
# deps: packages
nibiru-std = { path = "nibiru-std" }
prost = "0.12.3"
prost-types = "0.12.3"
bash-rs = { path = "packages/bash-rs" }
# Macros for controlling ownership of CosmWasm smart contracts
nibiru-ownable = { path = "packages/nibiru-ownable" }
nibiru-ownable-derive = { version = "0.1.0" }
# nibiru-ownable-derive = { path = "packages/nibiru-ownable-derive" }
cw-address-like = { path = "packages/cw-address-like" }
easy-addr = { path = "packages/easy-addr" }
# deps: CosmWasm
cosmwasm-std = { version = "2.0.2", features = ["stargate", "staking"] }
cosmwasm-schema = "2.0.2"
cw-storage-plus = { version = "2.0.0" }
cw-multi-test = { version = "2.0.1" }
cw-utils = { version = "2.0.0" }
# deps: cw-plus
cw2 = { version = "2.0.0" }
cw3 = { version = "2.0.0" }
cw3-fixed-multisig = { path = "contracts/core-cw3-fixed-msig", version = "2.0.0", features = ["library"] }
cw4 = { version = "2.0.0" }
cw20 = { version = "2.0.0" }
cw4-group = { version = "2.0" }
cw20-base = { version = "2.0" }
# deps: core contracts
shifter = { path = "contracts/core-shifter" }
controller = { path = "contracts/core-controller" }
lockup = { path = "contracts/lockup", features = ["library"] }
incentives = { path = "contracts/incentives", features = ["library"] }
broker-bank = { path = "contracts/broker-bank", features = ["library"] }
# deps: else
anyhow = "1"
thiserror = "1.0.50"
assert_cmd = "2"
lazy_static = "1.4.0"
clap = { version = "4.4.7", features = ["derive", "cargo", "env", "string"] }
schemars = "0.8.15"
home = "0.5"
toml = "0.8"
quote = "1.0"
syn = { version = "1", features = ["full"] } # NOTE: This needs to stay v1
proc-macro2 = "1.0"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true