[package]
edition = "2021"
name = "shank-parse"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A proc-macro crate that generates Rust client code from Shank/Anchor IDL JSON files for Solana programs."
homepage = "https://github.com/goni098/shank-parser"
documentation = "https://docs.rs/shank-parse"
readme = "README.md"
keywords = [
"solana",
"anchor",
"shank",
"idl",
"codegen",
]
categories = [
"development-tools",
"cryptography::cryptocurrencies",
]
license = "MIT"
repository = "https://github.com/goni098/shank-parser"
[lib]
name = "shank_parse"
path = "src/lib.rs"
[[test]]
name = "basic_mint"
path = "tests/basic_mint.rs"
[[test]]
name = "close_account"
path = "tests/close_account.rs"
[[test]]
name = "counter"
path = "tests/counter.rs"
[[test]]
name = "full_shank"
path = "tests/full_shank.rs"
[[test]]
name = "vault"
path = "tests/vault.rs"
[dependencies.base64]
version = "0.22"
[dependencies.shank-parse-macro]
version = "0.1.1"
[dependencies.solana-sdk]
version = "3"