a2555fc65d
It is unclear if this is worth the effort to manage (so this may be reverted later) but at least it seems we could remove a bunch of lines from the lockfile by removing unused feature flags.
21 lines
533 B
TOML
21 lines
533 B
TOML
[package]
|
|
name = "macro-rs"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
rust-version = "1.74"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
convert_case = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true, features = ["std"] }
|
|
syn = { workspace = true, features = ["extra-traits", "full"] }
|
|
|
|
[dev-dependencies]
|
|
thiserror = { workspace = true }
|
|
napi = { workspace = true }
|
|
napi-derive = { workspace = true, features = ["noop"] }
|