[package]
edition = "2021"
name = "jiminy"
version = "0.16.0"
authors = ["MoonManQuark"]
build = false
exclude = [
".github",
"*.sh",
"examples",
"bench",
"docs",
"BENCHMARKS.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The zero-copy standard library for Solana programs built on pinocchio. Account layout, validation, PDA, Token/Mint readers, Token-2022 screening, CPI guards, DeFi math, AMM, slippage, lending, staking, vesting, multisig, distribution, Merkle, Ed25519, Pyth oracle. Declarative macros for error codes, instruction dispatch, and account checks. no_std, no_alloc, no proc macros, BPF-safe."
homepage = "https://github.com/QuarksBlueFoot/jiminy"
documentation = "https://docs.rs/jiminy"
readme = "README.md"
keywords = [
"solana",
"pinocchio",
"bpf",
"zero-copy",
"no-std",
]
categories = [
"no-std",
"embedded",
]
license = "Apache-2.0"
repository = "https://github.com/QuarksBlueFoot/jiminy"
[features]
default = ["programs"]
log = ["jiminy-core/log"]
programs = [
"jiminy-core/programs",
"jiminy-solana/programs",
]
solana-zero-copy = ["jiminy-core/solana-zero-copy"]
[lib]
name = "jiminy"
path = "src/lib.rs"
[dependencies.jiminy-core]
version = "0.16.0"
[dependencies.jiminy-distribute]
version = "0.16.0"
[dependencies.jiminy-finance]
version = "0.16.0"
[dependencies.jiminy-lending]
version = "0.16.0"
[dependencies.jiminy-multisig]
version = "0.16.0"
[dependencies.jiminy-solana]
version = "0.16.0"
[dependencies.jiminy-staking]
version = "0.16.0"
[dependencies.jiminy-vesting]
version = "0.16.0"
[dependencies.pinocchio]
version = "0.10"
features = [
"cpi",
"copy",
]
[dependencies.pinocchio-system]
version = "0.5"
[dependencies.pinocchio-token]
version = "0.5"
[dependencies.sha2-const-stable]
version = "0.1"
[lints.rust.unexpected_cfgs]
level = "allow"
priority = 0
check-cfg = [
'cfg(target_os, values("solana"))',
'cfg(target_arch, values("bpf"))',
]