anchor/lang/attribute/program/Cargo.toml

23 lines
557 B
TOML
Raw Normal View History

2020-12-31 15:48:06 -08:00
[package]
2021-01-09 22:03:14 -08:00
name = "anchor-attribute-program"
2022-04-12 07:52:06 -07:00
version = "0.24.0"
2021-01-15 01:00:50 -08:00
authors = ["Serum Foundation <foundation@projectserum.com>"]
repository = "https://github.com/project-serum/anchor"
license = "Apache-2.0"
description = "Anchor attribute macro for defining a program"
2022-03-12 14:39:21 -08:00
rust-version = "1.56"
edition = "2021"
2020-12-31 15:48:06 -08:00
[lib]
proc-macro = true
[features]
anchor-debug = ["anchor-syn/anchor-debug"]
2020-12-31 15:48:06 -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"] }
2020-12-31 15:48:06 -08:00
anyhow = "1.0.32"
2022-04-12 07:52:06 -07:00
anchor-syn = { path = "../../syn", version = "0.24.0" }