2021-05-25 09:32:45 -07:00
|
|
|
[package]
|
2021-12-08 06:46:14 -08:00
|
|
|
name = "wormhole-bridge-solana"
|
2021-05-25 09:32:45 -07:00
|
|
|
version = "0.1.0"
|
2021-06-07 00:04:12 -07:00
|
|
|
description = "Wormhole bridge core contract"
|
2021-05-25 09:32:45 -07:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib", "lib"]
|
2021-06-07 00:04:12 -07:00
|
|
|
name = "bridge"
|
2021-05-25 09:32:45 -07:00
|
|
|
|
|
|
|
[features]
|
2021-06-28 04:52:59 -07:00
|
|
|
client = ["solitaire/client", "solitaire-client", "no-entrypoint"]
|
2021-05-25 09:32:45 -07:00
|
|
|
cpi = ["no-entrypoint"]
|
|
|
|
default = []
|
2022-01-10 06:31:36 -08:00
|
|
|
wasm = ["no-entrypoint", "wasm-bindgen"]
|
2021-06-30 23:11:09 -07:00
|
|
|
no-entrypoint = ["solitaire/no-entrypoint"]
|
|
|
|
trace = ["solitaire/trace"]
|
2021-05-25 09:32:45 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2022-01-13 05:29:19 -08:00
|
|
|
borsh = "=0.9.1"
|
2021-05-25 09:32:45 -07:00
|
|
|
byteorder = "1.4.3"
|
2021-06-04 04:02:35 -07:00
|
|
|
primitive-types = { version = "0.9.0", default-features = false }
|
2021-12-08 06:46:14 -08:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-06-18 02:43:37 -07:00
|
|
|
sha3 = "0.9.1"
|
2022-01-13 05:29:19 -08:00
|
|
|
solana-program = "=1.9.4"
|
2021-07-26 06:44:33 -07:00
|
|
|
solitaire-client = { path = "../../solitaire/client", optional = true }
|
|
|
|
solitaire = { path = "../../solitaire/program" }
|
2022-01-10 06:31:36 -08:00
|
|
|
wasm-bindgen = { version = "0.2.74", features = ["serde-serialize"], optional = true }
|
2021-06-18 02:43:37 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-06-22 01:19:11 -07:00
|
|
|
hex = "*"
|
2021-06-30 05:56:28 -07:00
|
|
|
rand = "0.7.3"
|
2021-06-30 03:09:19 -07:00
|
|
|
hex-literal = "0.3.1"
|
2021-06-22 01:19:11 -07:00
|
|
|
libsecp256k1 = { version = "0.3.5", features = [] }
|
2022-01-13 05:29:19 -08:00
|
|
|
solana-client = "=1.9.4"
|
|
|
|
solana-sdk = "=1.9.4"
|