rust-analyzer/crates/syntax/Cargo.toml
Chayim Refael Friedman 955e609867 Replace once_cell with std's recently stabilized OnceCell/Lock and LazyCell/Lock
This doesn't get rid of the once_cell dependency, unfortunately, since we have dependencies that use it, but it's a nice to do cleanup. And when our deps will eventually get rid of once_cell we will get rid of it for free.
2024-08-16 09:53:37 +03:00

43 lines
794 B
TOML

[package]
name = "syntax"
version = "0.0.0"
repository.workspace = true
description = "Concrete syntax tree definitions 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"
either.workspace = true
itertools.workspace = true
rowan = "0.15.15"
rustc-hash.workspace = true
indexmap.workspace = true
smol_str.workspace = true
triomphe.workspace = true
tracing.workspace = true
ra-ap-rustc_lexer.workspace = true
parser.workspace = true
stdx.workspace = true
text-edit.workspace = true
[dev-dependencies]
rayon.workspace = true
expect-test = "1.4.0"
rustc_apfloat = "0.2.0"
test-utils.workspace = true
[features]
in-rust-tree = []
[lints]
workspace = true