rust/crates/syntax/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
920 B
TOML
Raw Normal View History

2018-08-10 22:33:29 +03:00
[package]
2020-08-12 18:26:51 +02:00
name = "syntax"
version = "0.0.0"
description = "Comment and whitespace preserving parser for the Rust language"
2022-04-13 16:54:24 -07:00
repository = "https://github.com/rust-lang/rust-analyzer"
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
2018-08-10 22:33:29 +03:00
2019-11-17 18:35:05 +03:00
[lib]
doctest = false
2018-08-10 22:33:29 +03:00
[dependencies]
2021-06-12 23:39:57 +03:00
cov-mark = "2.0.0-pre.1"
2023-11-15 13:07:36 +02:00
either.workspace = true
2023-11-15 12:53:56 +02:00
itertools.workspace = true
rowan = "0.15.15"
rustc-hash.workspace = true
2023-01-21 08:48:46 +02:00
once_cell = "1.17.0"
2023-11-15 13:21:34 +02:00
indexmap.workspace = true
2023-04-11 14:05:22 +02:00
smol_str.workspace = true
2023-05-02 17:12:22 +03:00
triomphe.workspace = true
tracing.workspace = true
2018-08-10 22:33:29 +03:00
ra-ap-rustc_lexer.workspace = true
2023-05-18 10:17:40 +02:00
parser.workspace = true
stdx.workspace = true
text-edit.workspace = true
2020-08-12 18:26:51 +02:00
2018-08-10 22:33:29 +03:00
[dev-dependencies]
2023-11-15 21:14:56 +02:00
rayon.workspace = true
expect-test = "1.4.0"
2022-10-15 13:02:10 +03:00
proc-macro2 = "1.0.47"
2022-07-02 22:29:06 +03:00
quote = "1.0.20"
ungrammar = "1.16.1"
test-utils.workspace = true
sourcegen.workspace = true
[features]
in-rust-tree = []
[lints]
workspace = true