The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyperlane-monorepo/rust/sealevel/programs/validator-announce/Cargo.toml

32 lines
827 B

cargo-features = ["workspace-inheritance"]
[package]
name = "hyperlane-sealevel-validator-announce"
version = "0.1.0"
edition = "2021"
[features]
no-entrypoint = []
[dependencies]
borsh.workspace = true
solana-program.workspace = true
thiserror.workspace = true
account-utils = { path = "../../libraries/account-utils" }
ecdsa-signature = { path = "../../libraries/ecdsa-signature" }
hyperlane-sealevel-mailbox = { path = "../mailbox", features = [
"no-entrypoint",
] }
hyperlane-core = { path = "../../../main/hyperlane-core" }
serializable-account-meta = { path = "../../libraries/serializable-account-meta" }
[dev-dependencies]
hex.workspace = true
solana-program-test.workspace = true
solana-sdk.workspace = true
hyperlane-test-utils = { path = "../../libraries/test-utils" }
[lib]
crate-type = ["cdylib", "lib"]