40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[package]
|
|
name = "token-bridge-terra-2"
|
|
version = "0.1.0"
|
|
authors = ["Yuriy Savchenko <yuriy.savchenko@gmail.com>"]
|
|
edition = "2018"
|
|
description = "Wormhole token bridge"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
backtraces = ["cosmwasm-std/backtraces"]
|
|
# use library feature to disable all init/handle/query exports
|
|
library = []
|
|
# The 'full' feature enables all non-shutdown functionality. Without the 'full' feature
|
|
# enabled, only shutdown functionality is enabled (basically governance).
|
|
full = ["wormhole-bridge-terra-2/full"]
|
|
default = ["full"]
|
|
|
|
[dependencies]
|
|
cosmwasm-std = { version = "1.0.0" }
|
|
cosmwasm-storage = { version = "1.0.0" }
|
|
schemars = "0.8.8"
|
|
serde = { version = "1.0.137", default-features = false, features = ["derive"] }
|
|
cw20 = "0.13.2"
|
|
cw20-base = { version = "0.13.2", features = ["library"] }
|
|
cw20-wrapped-2 = { version = "0.1.0", features = ["library"] }
|
|
terraswap = "2.6.1"
|
|
wormhole-bridge-terra-2 = { version = "0.1.0", default-features = false, features = ["library"] }
|
|
thiserror = { version = "1.0.31" }
|
|
k256 = { version = "0.9.4", default-features = false, features = ["ecdsa"] }
|
|
sha3 = { version = "0.9.1", default-features = false }
|
|
generic-array = { version = "0.14.4" }
|
|
hex = "0.4.2"
|
|
lazy_static = "1.4.0"
|
|
bigint = "4"
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0"
|