| 12345678910111213141516171819202122232425262728293031323334 |
- [package]
- name = "bridge_stub"
- version = "0.1.0"
- description = "Wormhole bridge core contract"
- edition = "2018"
- [lib]
- crate-type = ["cdylib", "lib"]
- name = "bridge_stub"
- [features]
- client = ["solitaire/client", "solitaire-client", "no-entrypoint"]
- cpi = ["no-entrypoint"]
- default = []
- no-entrypoint = ["solitaire/no-entrypoint"]
- trace = ["solitaire/trace"]
- [dependencies]
- borsh = "=0.9.3"
- byteorder = "1.4.3"
- primitive-types = { version = "0.9.0", default-features = false }
- sha3 = "0.9.1"
- solana-program = "=1.10.13"
- solitaire-client = { path = "../../solitaire/client", optional = true }
- solitaire = { path = "../../solitaire/program" }
- wormhole-bridge-solana = { path = "../program", features = ["no-entrypoint"] }
- [dev-dependencies]
- hex = "*"
- rand = "0.7.3"
- hex-literal = "0.3.1"
- libsecp256k1 = { version = "0.3.5", features = [] }
- solana-client = "=1.10.13"
- solana-sdk = "=1.10.13"
|