mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 07:04:22 +00:00
34 lines
678 B
TOML
34 lines
678 B
TOML
[package]
|
|
name = "syntax-bridge"
|
|
version = "0.0.0"
|
|
repository.workspace = true
|
|
description = "Conversions between syntax nodes and token trees for rust-analyzer."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
rustc-hash.workspace = true
|
|
tracing.workspace = true
|
|
|
|
# local deps
|
|
syntax.workspace = true
|
|
parser.workspace = true
|
|
tt.workspace = true
|
|
stdx.workspace = true
|
|
span.workspace = true
|
|
intern.workspace = true
|
|
|
|
[dev-dependencies]
|
|
test-utils.workspace = true
|
|
|
|
[features]
|
|
in-rust-tree = ["parser/in-rust-tree", "tt/in-rust-tree", "syntax/in-rust-tree"]
|
|
|
|
[lints]
|
|
workspace = true
|