mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-29 06:23:25 +00:00
5211972743
Ideally we'd not have any dependency pull in the derive feature for faster build times, once that is the case this change would have an actual effect. See https://github.com/matklad/macro-dep-test/blob/master/README.md for context.
33 lines
795 B
TOML
33 lines
795 B
TOML
[package]
|
|
name = "proc-macro-api"
|
|
version = "0.0.0"
|
|
repository.workspace = true
|
|
description = "RPC Api for the `proc-macro-srv` crate of rust-analyzer."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json = { workspace = true, features = ["unbounded_depth"] }
|
|
tracing.workspace = true
|
|
rustc-hash.workspace = true
|
|
indexmap.workspace = true
|
|
|
|
# local deps
|
|
paths = { workspace = true, features = ["serde1"] }
|
|
tt.workspace = true
|
|
stdx.workspace = true
|
|
# span = {workspace = true, default-features = false} does not work
|
|
span = { path = "../span", version = "0.0.0", default-features = false}
|
|
|
|
intern.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|