[package] name = "bridge" 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"] no-entrypoint = ["solitaire/no-entrypoint"] cpi = ["no-entrypoint"] default = [] [dependencies] borsh = "0.8.1" byteorder = "1.4.3" primitive-types = { version = "0.9.0", default-features = false } sha3 = "0.9.1" solana-program = "=1.7.0" solitaire-client = { path = "../../solitaire/client", optional = true} solitaire = { path = "../../solitaire/program"} [dev-dependencies] hex = "*" libsecp256k1 = { version = "0.3.5", features = [] } solana-client = "1.7.0" solana-sdk = "=1.7.0"