anchor/syn/Cargo.toml

19 lines
398 B
TOML
Raw Normal View History

2020-12-31 15:48:06 -08:00
[package]
name = "anchor-syn"
2021-01-14 23:19:52 -08:00
version = "0.0.0-alpha.0"
2020-12-31 15:48:06 -08:00
authors = ["armaniferrante <armaniferrante@gmail.com>"]
edition = "2018"
2021-01-01 19:07:26 -08:00
[features]
idl = []
default = []
2020-12-31 15:48:06 -08:00
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
2021-01-15 00:26:21 -08:00
syn = { version = "=1.0.57", features = ["full", "extra-traits", "parsing"] }
2020-12-31 15:48:06 -08:00
anyhow = "1.0.32"
heck = "0.3.1"
serde = { version = "1.0.118", features = ["derive"] }
2021-01-02 22:40:17 -08:00
serde_json = "1.0"