[package]
edition = "2021"
name = "pda-counter"
version = "0.1.1"
authors = ["Adarsh adarshtechjob@gmail.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal Solana smart contract using Anchor to demonstrate PDA-based counter logic."
homepage = "https://github.com/Webrowse/pda_counter"
readme = "README.md"
keywords = [
"solana",
"anchor",
"pda",
"rust",
]
categories = [
"cryptography::cryptocurrencies",
"wasm",
"no-std",
]
license = "MIT"
repository = "https://github.com/webrowse/pda_counter"
[features]
anchor-debug = []
cpi = ["no-entrypoint"]
custom-heap = []
custom-panic = []
default = []
idl-build = ["anchor-lang/idl-build"]
no-entrypoint = []
no-idl = []
no-log-ix-name = []
[lib]
name = "pda_counter"
crate-type = [
"cdylib",
"lib",
]
path = "src/lib.rs"
[dependencies.anchor-lang]
version = "0.31.1"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(target_os, values("solana"))']