anchor/lang/syn/Cargo.toml

28 lines
645 B
TOML
Raw Normal View History

2020-12-31 15:48:06 -08:00
[package]
name = "anchor-syn"
2021-09-17 10:33:32 -07:00
version = "0.16.1"
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 syntax parsing and code generation tools"
2020-12-31 15:48:06 -08:00
edition = "2018"
2021-01-01 19:07:26 -08:00
[features]
idl = []
2021-02-05 03:17:40 -08:00
hash = []
2021-01-01 19:07:26 -08:00
default = []
anchor-debug = []
2020-12-31 15:48:06 -08:00
[dependencies]
proc-macro2 = "1.0"
proc-macro2-diagnostics = "0.9"
2020-12-31 15:48:06 -08:00
quote = "1.0"
2021-04-04 00:55:56 -07:00
syn = { version = "1.0.60", features = ["full", "extra-traits", "parsing"] }
2020-12-31 15:48:06 -08:00
anyhow = "1.0.32"
heck = "0.3.1"
2021-04-04 00:55:56 -07:00
serde = { version = "1.0.122", features = ["derive"] }
2021-01-02 22:40:17 -08:00
serde_json = "1.0"
2021-02-05 03:17:40 -08:00
sha2 = "0.9.2"
thiserror = "1.0"
bs58 = "0.3.1"