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/hyperlane-sealevel-token/Cargo.toml

46 lines
1.4 KiB

cargo-features = ["workspace-inheritance"]
[package]
name = "hyperlane-sealevel-token"
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
spl-associated-token-account.workspace = true
spl-noop.workspace = true
spl-token-2022.workspace = true
spl-token.workspace = true
thiserror.workspace = true
account-utils = { path = "../../libraries/account-utils" }
hyperlane-core = { path = "../../../main/hyperlane-core" }
hyperlane-sealevel-connection-client = { path = "../../libraries/hyperlane-sealevel-connection-client" }
hyperlane-sealevel-mailbox = { path = "../mailbox", features = [
"no-entrypoint",
] }
hyperlane-sealevel-igp = { path = "../hyperlane-sealevel-igp", features = [
"no-entrypoint",
] }
hyperlane-sealevel-message-recipient-interface = { path = "../../libraries/message-recipient-interface" }
hyperlane-sealevel-token-lib = { path = "../../libraries/hyperlane-sealevel-token" }
serializable-account-meta = { path = "../../libraries/serializable-account-meta" }
[dev-dependencies]
solana-program-test.workspace = true
solana-sdk.workspace = true
hyperlane-test-utils = { path = "../../libraries/test-utils" }
hyperlane-sealevel-test-ism = { path = "../ism/test-ism", features = [
"no-entrypoint",
] }
[lib]
crate-type = ["cdylib", "lib"]