[package]
edition = "2021"
rust-version = "1.65"
name = "kv-asm"
version = "0.2.0"
authors = ["Cavey Cool <caveycool@gmail.com>"]
build = false
include = [
"src/**/*.rs",
"tests/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Quote-free inline and global sBPF assembly macros for Solana programs (kv_asm! and kv_global_asm!)."
homepage = "https://github.com/cavemanloverboy/kv-asm"
documentation = "https://docs.rs/kv-asm"
readme = "README.md"
keywords = [
"solana",
"sbpf",
"bpf",
"asm",
"macro",
]
categories = [
"development-tools",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cavemanloverboy/kv-asm"
[lib]
name = "kv_asm"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "equivalence"
path = "tests/equivalence.rs"
[[test]]
name = "macro_expansion"
path = "tests/macro_expansion.rs"
[dependencies.proc-macro2]
version = "1"
features = ["span-locations"]
[dependencies.quote]
version = "1"