[package]
edition = "2021"
name = "hopper-native"
version = "0.1.0"
authors = [
"BluefootLabs <contact@bluefootlabs.com>",
"MoonManQuark",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hopper's sovereign raw backend for Solana. Zero-copy account access, direct syscall layer, CPI infrastructure, PDA helpers, and entrypoint glue. no_std, no_alloc, no external runtime dependencies."
homepage = "https://hopperzero.dev"
documentation = "https://docs.rs/hopper-native"
readme = "README.md"
keywords = [
"solana",
"zero-copy",
"runtime",
"no-std",
"syscall",
]
categories = [
"no-std",
"embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/BluefootLabs/Hopper-Solana-Zero-copy-State-Framework"
[features]
bytemuck = ["dep:bytemuck"]
copy = []
cpi = []
cu-trace = []
default = [
"cpi",
"bytemuck",
"legacy-projectable",
]
legacy-projectable = []
static-syscalls = []
[lib]
name = "hopper_native"
path = "src/lib.rs"
[dependencies.bytemuck]
version = "1"
features = [
"derive",
"min_const_generics",
]
optional = true
default-features = false
[dependencies.five8_const]
version = "0.1"
[lints.rust.unexpected_cfgs]
level = "allow"
priority = 0
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(target_arch, values("bpf"))',
]