forked from many-things/cw-hyperlane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (36 loc) · 944 Bytes
/
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
[workspace]
members = ['contracts/*', 'packages/*']
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = true
panic = 'abort'
rpath = false
[workspace.package]
version = "0.0.1"
authors = ["byeongsu-hong <[email protected]>"]
edition = "2021"
license = "GPL-3.0-or-later"
repository = "https://github.com/mars-protocol/red-bank"
homepage = "https://marsprotocol.io"
documentation = "https://docs.marsprotocol.io/"
keywords = ["mars", "cosmos", "cosmwasm"]
[workspace.dependencies]
cosmwasm-std = { version = "1.1.9", features = ["stargate"] }
cosmwasm-storage = "1.1.9"
schemars = "0.8.12"
cw-storage-plus = "1.0.1"
cw-utils = "0.16.0"
cw2 = "1.0.0"
sha3 = "0.10.8"
ripemd = "0.1.3"
bech32 = "0.9.1"
serde = "1.0.162"
thiserror = { version = "1.0.37" }
cw-multi-test = "0.16.1"
cosmwasm-schema = "1.1.9"
hpl-interface = { path = "./packages/interface" }