forked from CoreumFoundation/coreumbridge-xrpl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (48 loc) · 1.57 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
[workspace]
resolver = '2'
members = ["contracts/*"]
[workspace.package]
version = "0.1.0"
authors = ["Coreum", "Oraichain Labs"]
edition = "2021"
license = "MIT"
repository = "https://github.com/oraichain/bitcoin-bridge-cw.git"
homepage = "https://orai.io"
documentation = "https://github.com/oraichain/bitcoin-bridge-cw.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",
]
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
codegen-units = 1
incremental = false
rpath = false
lto = true
overflow-checks = true
panic = 'abort'
[workspace.dependencies]
cosmwasm-schema = "1.5"
cosmwasm-std = { version = "1.5" }
cw-ownable = "0.5.1"
cw-storage-plus = "1.0"
cw-utils = "1.0"
cw2 = "1.0"
cw20 = "1.0"
thiserror = "1.0.56"
derive_more = "0.99.17"
tokenfactory = { git = "https://github.com/oraichain/token-bindings.git", rev = "9796c74", features = [
"library",
] }
token-bindings = { git = "https://github.com/oraichain/token-bindings.git", rev = "9796c74" }
cosmwasm-testing-util = { git = "https://github.com/oraichain/cosmwasm-testing-util.git", rev = "143348c" }
ripple-keypairs = "0.1.0"
rate-limiter = { git = "https://github.com/oraichain/rate-limit-contract.git", rev = "fecf976", features = [
"library",
] }
skip = { git = "https://github.com/oraichain/osor-api-contracts.git", rev = "06559221" }
[patch.crates-io]
ripple-keypairs = { git = 'https://github.com/CoreumFoundation/ripple-keypairs-rust.git' }