Files
third_party_rust_syn/codegen/Cargo.toml
T
ljy9810 b50d6d940a syn升级到2.0.114版本
Signed-off-by: ljy9810 <longjianyin@h-partners.com>
2026-03-03 14:22:30 +08:00

30 lines
887 B
TOML

[package]
name = "syn-internal-codegen"
version = "0.0.0"
authors = ["David Tolnay <dtolnay@gmail.com>", "Nika Layzell <nika@thelayzells.com>"]
edition = "2021"
publish = false # this is an internal crate which should never be published
[features]
default = ["json"]
json = ["syn-codegen/serde"]
[dependencies]
anyhow = "1"
color-backtrace = "0.7"
indexmap = { version = "2", features = ["serde"] }
indoc = "2"
inflections = "1.1"
prettyplease = "0.2.3"
proc-macro2 = { version = "1.0.20", features = ["span-locations"] }
quote = "1"
semver = { version = "1", features = ["serde"] }
serde = "1.0.88"
serde_json = "1.0.38"
syn = { version = "2", features = ["derive", "full", "parsing", "printing"], default-features = false }
syn-codegen = { path = "../json", default-features = false }
toml = { version = "0.9", default-features = false, features = ["parse", "serde"] }
[workspace]