[package]
edition = "2021"
name = "jiminy-staking"
version = "0.16.0"
authors = ["MoonManQuark"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Staking reward accumulators for Jiminy: MasterChef-style reward-per-token, emission rates, reward debt tracking. Zero-copy, no_std, no_alloc, BPF-safe."
homepage = "https://github.com/QuarksBlueFoot/jiminy"
documentation = "https://docs.rs/jiminy-staking"
readme = "README.md"
keywords = [
"solana",
"pinocchio",
"staking",
"rewards",
"zero-copy",
]
categories = [
"no-std",
"embedded",
]
license = "Apache-2.0"
repository = "https://github.com/QuarksBlueFoot/jiminy"
[features]
default = []
[lib]
name = "jiminy_staking"
path = "src/lib.rs"
[dependencies.pinocchio]
version = "0.10"
features = [
"cpi",
"copy",
]
[lints.rust.unexpected_cfgs]
level = "allow"
priority = 0
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(target_arch, values("bpf"))',
]