-
-
Notifications
You must be signed in to change notification settings - Fork 315
/
Copy pathCargo.toml
31 lines (27 loc) · 918 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[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.8", default-features = false, features = ["parse"] }
[workspace]
[patch.crates-io]
syn = { path = ".." }