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

35 lines
1.2 KiB

cargo-features = ["workspace-inheritance"]
[package]
name = "hyperlane-sealevel-token-lib"
version = "0.1.0"
edition = "2021"
[dependencies]
borsh.workspace = true
num-derive.workspace = true
num-traits.workspace = true
solana-program.workspace = true
thiserror.workspace = true
spl-associated-token-account.workspace = true
spl-noop.workspace = true
spl-token.workspace = true
spl-token-2022.workspace = true # FIXME Should we actually use 2022 here or try normal token program?
access-control = { path = "../access-control" }
account-utils = { path = "../account-utils" }
hyperlane-core = { path = "../../../main/hyperlane-core" }
hyperlane-sealevel-connection-client = { path = "../hyperlane-sealevel-connection-client" }
hyperlane-sealevel-mailbox = { path = "../../programs/mailbox", features = [
"no-entrypoint",
] }
hyperlane-sealevel-igp = { path = "../../programs/hyperlane-sealevel-igp", features = [
"no-entrypoint",
] }
hyperlane-sealevel-message-recipient-interface = { path = "../message-recipient-interface" }
serializable-account-meta = { path = "../serializable-account-meta" }
[dev-dependencies]
[lib]
crate-type = ["cdylib", "lib"]