1[package] 2name = "syn-internal-codegen" 3version = "0.0.0" 4authors = ["David Tolnay <dtolnay@gmail.com>", "Nika Layzell <nika@thelayzells.com>"] 5edition = "2021" 6 7publish = false # this is an internal crate which should never be published 8 9[dependencies] 10anyhow = "1" 11color-backtrace = "0.4" 12indexmap = { version = "2", features = ["serde"] } 13inflections = "1.1" 14prettyplease = "0.2.3" 15proc-macro2 = { version = "1.0.20", features = ["span-locations"] } 16quote = "1" 17semver = { version = "1", features = ["serde"] } 18serde = "1.0.88" 19serde_derive = "1.0.88" 20serde_json = "1.0.38" 21syn = { version = "2", features = ["derive", "full", "parsing", "printing"], default-features = false } 22syn-codegen = { path = "../json" } 23thiserror = "1" 24toml = "0.5" 25 26[workspace] 27[patch.crates-io] 28syn = { path = ".." } 29