rust-analyzer/crates/load-cargo/Cargo.toml
Vincent Esche 624f2ead7b Unify package descriptions by adding references to "rust-analyzer"
With the lack of a README on the individually published library crates and the somewhat cryptic `ra_ap_` prefix it is hard to figure out where those crates belong to, so mentioning "rust-analyzer" feels like auseful hint there.
2024-08-06 00:25:02 +02:00

37 lines
882 B
TOML

[package]
name = "load-cargo"
version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Loads a Cargo project into a static instance of rust-analyzer for analysis."
rust-version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow.workspace = true
crossbeam-channel.workspace = true
itertools.workspace = true
tracing.workspace = true
# workspace deps
hir-expand.workspace = true
ide-db.workspace = true
paths.workspace = true
proc-macro-api.workspace = true
project-model.workspace = true
span.workspace = true
tt.workspace = true
vfs-notify.workspace = true
vfs.workspace = true
intern.workspace = true
[features]
in-rust-tree = ["hir-expand/in-rust-tree"]
[lints]
workspace = true