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/ism/multisig-ism-message-id/Cargo.toml

43 lines
1.5 KiB

cargo-features = ["workspace-inheritance"]
[package]
name = "hyperlane-sealevel-multisig-ism-message-id"
version = "0.1.0"
edition = "2021"
[features]
no-entrypoint = []
[dependencies]
borsh.workspace = true
num-derive.workspace = true
num-traits.workspace = true
solana-program.workspace = true
thiserror.workspace = true
access-control = { path = "../../../libraries/access-control" }
account-utils = { path = "../../../libraries/account-utils" }
ecdsa-signature = { path = "../../../libraries/ecdsa-signature" }
hyperlane-core = { path = "../../../../main/hyperlane-core" }
hyperlane-sealevel-interchain-security-module-interface = { path = "../../../libraries/interchain-security-module-interface" }
hyperlane-sealevel-mailbox = { path = "../../mailbox", features = [
"no-entrypoint",
] }
multisig-ism = { path = "../../../libraries/multisig-ism" }
serializable-account-meta = { path = "../../../libraries/serializable-account-meta" }
[dev-dependencies]
hyperlane-sealevel-multisig-ism-message-id = { path = "../multisig-ism-message-id" }
hyperlane-test-utils = { path = "../../../libraries/test-utils" }
multisig-ism = { path = "../../../libraries/multisig-ism", features = [
"test-data",
] }
solana-program-test.workspace = true
solana-sdk.workspace = true
hex.workspace = true
# Can't have as a workspace dep, because this is already in the dep tree twice: once as
# an older solana one, once as a newer one used more generally.
rand = "0.8.5"
[lib]
crate-type = ["cdylib", "lib"]