mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 07:04:22 +00:00
8a50aecb07
I didn't follow rustc precisely, because I think it does some things wrongly (or they are FIXME), but I only allowed more code, not less. So we're all fine.
40 lines
824 B
TOML
40 lines
824 B
TOML
[package]
|
|
name = "mbe"
|
|
version = "0.0.0"
|
|
repository.workspace = true
|
|
description = "Handling of `macro_rules` macros for rust-analyzer."
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
cov-mark = "2.0.0-pre.1"
|
|
rustc-hash.workspace = true
|
|
smallvec.workspace = true
|
|
tracing.workspace = true
|
|
arrayvec.workspace = true
|
|
ra-ap-rustc_lexer.workspace = true
|
|
|
|
# local deps
|
|
syntax.workspace = true
|
|
parser.workspace = true
|
|
tt.workspace = true
|
|
stdx.workspace = true
|
|
span.workspace = true
|
|
intern.workspace = true
|
|
syntax-bridge.workspace = true
|
|
|
|
[dev-dependencies]
|
|
test-utils.workspace = true
|
|
expect-test.workspace = true
|
|
|
|
[features]
|
|
in-rust-tree = ["parser/in-rust-tree", "tt/in-rust-tree", "syntax/in-rust-tree"]
|
|
|
|
[lints]
|
|
workspace = true
|