[package]
edition = "2021"
name = "codama-macros"
version = "0.7.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for the Codama standard"
readme = false
license = "Apache-2.0"
repository = "https://github.com/codama-idl/codama-rs"
[lib]
name = "codama_macros"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "tests"
path = "tests/mod.rs"
[dev-dependencies.trybuild]
version = "1.0.49"
features = ["diff"]
[target.'cfg(not(target_os = "solana"))'.dependencies.codama-attributes]
version = "0.7.2"
[target.'cfg(not(target_os = "solana"))'.dependencies.codama-errors]
version = "0.7.2"
[target.'cfg(not(target_os = "solana"))'.dependencies.codama-koroks]
version = "0.7.2"
[target.'cfg(not(target_os = "solana"))'.dependencies.codama-stores]
version = "0.7.2"
[target.'cfg(not(target_os = "solana"))'.dependencies.proc-macro2]
version = "1.0"
[target.'cfg(not(target_os = "solana"))'.dependencies.quote]
version = "1.0"
[target.'cfg(not(target_os = "solana"))'.dependencies.syn]
version = "2.0"
features = ["extra-traits"]
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(target_os, values("solana"))']