2023-07-03 15:40:31 +00:00
|
|
|
[package]
|
|
|
|
name = "load-cargo"
|
|
|
|
version = "0.0.0"
|
2024-08-05 22:23:22 +00:00
|
|
|
repository.workspace = true
|
2024-08-03 15:51:31 +00:00
|
|
|
description = "Loads a Cargo project into a static instance of rust-analyzer for analysis."
|
2023-07-10 10:40:37 +00:00
|
|
|
|
2023-07-03 15:40:31 +00:00
|
|
|
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]
|
2023-11-15 10:49:32 +00:00
|
|
|
anyhow.workspace = true
|
2023-12-18 13:53:11 +00:00
|
|
|
crossbeam-channel.workspace = true
|
2023-11-15 10:53:56 +00:00
|
|
|
itertools.workspace = true
|
2023-11-15 11:00:32 +00:00
|
|
|
tracing.workspace = true
|
2023-07-03 15:40:31 +00:00
|
|
|
|
2024-02-28 14:27:16 +00:00
|
|
|
# workspace deps
|
|
|
|
|
|
|
|
hir-expand.workspace = true
|
2023-11-15 10:49:32 +00:00
|
|
|
ide-db.workspace = true
|
2024-03-19 12:05:50 +00:00
|
|
|
paths.workspace = true
|
2023-07-03 15:40:31 +00:00
|
|
|
proc-macro-api.workspace = true
|
|
|
|
project-model.workspace = true
|
2024-02-28 14:27:16 +00:00
|
|
|
span.workspace = true
|
2023-07-03 15:40:31 +00:00
|
|
|
tt.workspace = true
|
|
|
|
vfs-notify.workspace = true
|
2024-02-28 14:27:16 +00:00
|
|
|
vfs.workspace = true
|
2024-07-16 10:43:58 +00:00
|
|
|
intern.workspace = true
|
2023-12-29 14:22:29 +00:00
|
|
|
|
2024-04-20 15:44:27 +00:00
|
|
|
[features]
|
|
|
|
in-rust-tree = ["hir-expand/in-rust-tree"]
|
|
|
|
|
2023-12-29 14:22:29 +00:00
|
|
|
[lints]
|
2024-02-28 14:27:16 +00:00
|
|
|
workspace = true
|