-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
63 lines (58 loc) · 2.14 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
[workspace]
resolver = '2'
members = ["contracts/*", "packages/*", "wasm"]
[workspace.package]
authors = ["Oraichain Labs"]
documentation = "https://github.com/oraichain/bitcoin-bridge-cw.git"
edition = "2021"
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",
]
homepage = "https://orai.io"
license = "MIT"
repository = "https://github.com/oraichain/bitcoin-bridge-cw.git"
version = "0.1.0"
[workspace.dependencies]
bitcoin = {version = "0.29.2"}
bitcoin-script = {git = "https://github.com/oraichain/rust-bitcoin-script.git"}
bitcoincore-rpc-async = {package = "bitcoincore-rpc-async2", version = "4.0.2"}
bitcoind = {version = "0.27.0", features = ["22_0"]}
cosmwasm-schema = {version = "1.5"}
cosmwasm-std = {version = "1.5", features = ["stargate"]}
cosmwasm-storage = {version = "1.5"}
bech32 = "0.11.0"
chrono = "0.4.19"
common-bitcoin = {path = "./packages/common-bitcoin"}
cosmwasm-testing-util = {git = "https://github.com/oraichain/cosmwasm-testing-util.git", rev = "4887c6e"}
cw-light-client-bitcoin = {path = "./contracts/light-client-bitcoin"}
cw-storage-plus = {version = "1.0.1"}
cw2 = {version = "1.0.1"}
cw20 = {version = "1.0.1"}
cw20-base = {version = "1.0.1"}
derive_more = "0.99.17"
ibc-proto = {version = "0.32.1", default-features = false}
light-client-bitcoin = {path = "./packages/light-client-bitcoin"}
oraiswap = {git = "https://github.com/oraichain/oraiswap.git", rev = "c5fd186"}
prost = {version = "0.11.9"}
serde = "1.0.133"
serde_json = "1.0.74"
sha2 = "0.10.6"
skip = {git = "https://github.com/oraichain/osor-api-contracts.git", rev = "14d852c"}
thiserror = "1.0.26"
token-bindings = {git = "https://github.com/oraichain/token-bindings.git", rev = "9796c74"}
tokenfactory = {git = "https://github.com/oraichain/token-bindings.git", rev = "9796c74", features = [
"library",
]}
tokio = {version = "1.14.0", features = ["full"]}
[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 'z'
overflow-checks = true
panic = 'abort'
rpath = false