forked from RSquad/ton-trustless-bridge-evm-contracts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
57 lines (48 loc) · 1.86 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
[workspace]
resolver = '2'
members = ["packages/*", "contracts/*"]
[workspace.package]
version = "0.2.0"
authors = ["Oraichain Labs"]
edition = "2021"
license = "MIT"
repository = "https://github.com/oraichain/tonbridge-cw-contracts.git"
homepage = "https://orai.io"
documentation = "https://github.com/oraichain/tonbridge-cw-contracts.git"
exclude = [
# Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication.
"contract.wasm",
"hash.txt",
]
[workspace.dependencies]
cosmwasm-std = { version = "1.5" }
cosmwasm-schema = { version = "1.5" }
cosmwasm-storage = { version = "1.5" }
thiserror = "1.0.26"
cw2 = { version = "1.0.1" }
cw20 = { version = "1.0.1" }
cw20-base = { version = "1.0.1" }
cw-storage-plus = { version = "1.0.1" }
cw-controllers = "1.0.1"
cw-utils = "1.0.1"
sha2 = "0.10.8"
tonbridge-parser = { path = "./packages/parser" }
tonbridge-validator = { path = "./packages/validator" }
tonbridge-bridge = { path = "./packages/bridge" }
cw-tonbridge-validator = { path = "./contracts/tonbridge_validator" }
oraiswap = { git = "https://github.com/oraichain/oraiswap.git", rev = "c5fd186" }
tonlib = { git = "https://github.com/oraichain/tonlib-rs.git", rev = "eb28f37", default-features = false }
cosmwasm-testing-util = { git = "https://github.com/oraichain/cosmwasm-testing-util.git", rev = "5647be1" }
tokenfactory = { git = "https://github.com/oraichain/token-bindings.git", rev = "9796c74" }
token-bindings = { git = "https://github.com/oraichain/token-bindings.git", rev = "9796c74" }
skip = { git = "https://github.com/oraichain/osor-api-contracts.git", rev = "0655922173b4ac37c5e63f451eb9bc33c7ac8159" }
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
codegen-units = 1
incremental = false
rpath = false
lto = true
overflow-checks = true
panic = 'abort'