anchor/lang/attribute/error/Cargo.toml

22 lines
535 B
TOML
Raw Normal View History

2021-01-15 23:05:26 -08:00
[package]
name = "anchor-attribute-error"
2023-03-08 05:28:23 -08:00
version = "0.27.0"
2021-01-15 23:05:26 -08:00
authors = ["Serum Foundation <foundation@projectserum.com>"]
repository = "https://github.com/coral-xyz/anchor"
2021-01-15 23:05:26 -08:00
license = "Apache-2.0"
description = "Anchor attribute macro for creating error types"
rust-version = "1.60"
2022-03-12 14:39:21 -08:00
edition = "2021"
2021-01-15 23:05:26 -08:00
[lib]
proc-macro = true
[features]
anchor-debug = ["anchor-syn/anchor-debug"]
2021-01-15 23:05:26 -08:00
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
2021-04-04 00:55:56 -07:00
syn = { version = "1.0.60", features = ["full"] }
2023-03-08 05:28:23 -08:00
anchor-syn = { path = "../../syn", version = "0.27.0" }