mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-14 06:03:58 +00:00
32 lines
765 B
TOML
32 lines
765 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_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
|