[package]
edition = "2021"
name = "hopper-associated-token"
version = "0.2.0"
authors = [
"BluefootLabs <contact@bluefootlabs.com>",
"MoonManQuark",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hopper-owned associated token account helpers and CPI builders. Thin, no_std instruction builders over Hopper Runtime."
homepage = "https://hopperzero.dev"
documentation = "https://docs.rs/crate/hopper-associated-token/0.2.0"
readme = "README.md"
keywords = [
"solana",
"associated-token",
"cpi",
"zero-copy",
"hopper",
]
categories = ["no-std"]
license = "Apache-2.0"
repository = "https://github.com/BluefootLabs/Hopper-Solana-Zero-copy-State-Framework"
[features]
default = ["hopper-native-backend"]
hopper-native-backend = [
"hopper-runtime/hopper-native-backend",
"hopper-solana/hopper-native-backend",
]
legacy-pinocchio-compat = [
"hopper-runtime/legacy-pinocchio-compat",
"hopper-solana/legacy-pinocchio-compat",
]
solana-program-backend = [
"hopper-runtime/solana-program-backend",
"hopper-solana/solana-program-backend",
]
[lib]
name = "hopper_associated_token"
path = "src/lib.rs"
[dependencies.hopper-runtime]
version = "0.2.0"
default-features = false
[dependencies.hopper-solana]
version = "0.2.0"
default-features = false
[lints.rust.unexpected_cfgs]
level = "allow"
priority = 0
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(target_arch, values("bpf"))',
]