37 lines
991 B
TOML
37 lines
991 B
TOML
[package]
|
|
name = "wormhole-bridge-solana"
|
|
version = "0.1.0"
|
|
description = "Wormhole bridge core contract"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
name = "bridge"
|
|
|
|
[features]
|
|
client = ["solitaire/client", "solitaire-client", "no-entrypoint"]
|
|
cpi = ["no-entrypoint"]
|
|
default = []
|
|
wasm = ["no-entrypoint", "wasm-bindgen"]
|
|
no-entrypoint = ["solitaire/no-entrypoint"]
|
|
trace = ["solitaire/trace"]
|
|
|
|
[dependencies]
|
|
borsh = "=0.9.1"
|
|
byteorder = "1.4.3"
|
|
primitive-types = { version = "0.9.0", default-features = false }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
sha3 = "0.9.1"
|
|
solana-program = "=1.9.4"
|
|
solitaire-client = { path = "../../solitaire/client", optional = true }
|
|
solitaire = { path = "../../solitaire/program" }
|
|
wasm-bindgen = { version = "0.2.74", features = ["serde-serialize"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
hex = "*"
|
|
rand = "0.7.3"
|
|
hex-literal = "0.3.1"
|
|
libsecp256k1 = { version = "0.3.5", features = [] }
|
|
solana-client = "=1.9.4"
|
|
solana-sdk = "=1.9.4"
|