-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
52 lines (45 loc) · 1.45 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
[package]
name = "example-sei-token-translator"
version = "0.1.0"
authors = ["Wormhole Project Contributors"]
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true
[features]
# for more explicit tests, cargo test --features=backtraces
backtraces = ["cosmwasm-std/backtraces"]
# use library feature to disable all instantiate/execute/query/reply exports
library = []
[package.metadata.scripts]
optimize = """docker run --rm -v "$(pwd)":/code \
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
cosmwasm/rust-optimizer:0.12.6
"""
[dependencies]
sei-cosmwasm = { version = "0.4.10" }
cosmwasm-std = "1.0.0"
cw-storage-plus = "0.13.2"
cw20 = "0.13.2"
cosmwasm-schema = "1"
anyhow = "1"
serde-json-wasm = "0.4"
bs58 = "0.4.0"
cw-utils = "1.0.1"
cw20-wrapped-2 = { version = "0.1.0", features = ["library"] }
token-bridge-cosmwasm = { version = "0.1.0", features = ["library"] }
wormhole-cosmwasm = { version = "0.1.0", features = ["library"] }
[patch.crates-io]
cw20-wrapped-2 = { git = "https://github.com/wormhole-foundation/wormhole" }
token-bridge-cosmwasm = { git = "https://github.com/wormhole-foundation/wormhole" }
wormhole-cosmwasm = { git = "https://github.com/wormhole-foundation/wormhole" }