anchor/lang/syn/Cargo.toml

26 lines
595 B
TOML
Raw Normal View History

2020-12-31 15:48:06 -08:00
[package]
name = "anchor-syn"
2021-03-12 13:23:40 -08:00
version = "0.3.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 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 = []
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"
2021-02-05 03:17:40 -08:00
sha2 = "0.9.2"
thiserror = "1.0"
bs58 = "0.3.1"