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