2019-02-21 10:27:45 +00:00
|
|
|
[package]
|
2020-08-12 15:06:49 +00:00
|
|
|
name = "parser"
|
|
|
|
version = "0.0.0"
|
2024-08-05 22:23:22 +00:00
|
|
|
repository.workspace = true
|
2024-07-30 12:10:08 +00:00
|
|
|
description = "The Rust parser for rust-analyzer."
|
2023-01-16 15:41:47 +00:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2023-01-16 15:33:01 +00:00
|
|
|
rust-version.workspace = true
|
2019-02-21 10:27:45 +00:00
|
|
|
|
2019-11-17 15:35:05 +00:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2019-02-21 10:27:45 +00:00
|
|
|
[dependencies]
|
2022-03-22 16:36:41 +00:00
|
|
|
drop_bomb = "0.1.5"
|
2024-01-08 14:24:46 +00:00
|
|
|
ra-ap-rustc_lexer.workspace = true
|
2023-01-17 09:52:26 +00:00
|
|
|
limit.workspace = true
|
2024-03-04 10:10:06 +00:00
|
|
|
tracing = { workspace = true, optional = true }
|
2021-12-12 18:32:58 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-07-19 11:00:45 +00:00
|
|
|
expect-test = "1.4.0"
|
2023-01-17 09:52:26 +00:00
|
|
|
|
2023-02-11 17:06:07 +00:00
|
|
|
stdx.workspace = true
|
2023-09-15 14:40:11 +00:00
|
|
|
|
|
|
|
[features]
|
2024-03-04 10:10:06 +00:00
|
|
|
default = ["tracing"]
|
2024-01-08 14:24:46 +00:00
|
|
|
in-rust-tree = []
|
2023-12-29 14:22:29 +00:00
|
|
|
|
|
|
|
[lints]
|
2024-01-08 14:24:46 +00:00
|
|
|
workspace = true
|