2
0
Fork 0
mirror of https://github.com/rust-lang/rust-analyzer synced 2025-02-13 12:43:38 +00:00
rust-analyzer/crates/hir/Cargo.toml

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

41 lines
810 B
TOML
Raw Normal View History

2018-11-28 03:42:26 +03:00
[package]
2020-08-13 16:36:55 +02:00
name = "hir"
version = "0.0.0"
repository.workspace = true
description = "A high-level object-oriented access to Rust code for rust-analyzer."
2023-02-13 13:55:14 +02:00
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
2018-11-28 03:42:26 +03:00
2019-11-17 18:35:05 +03:00
[lib]
doctest = false
2018-11-28 03:42:26 +03:00
[dependencies]
rustc-hash.workspace = true
2023-11-15 13:07:36 +02:00
either.workspace = true
2023-12-20 12:53:46 +01:00
arrayvec.workspace = true
2023-11-15 12:53:56 +02:00
itertools.workspace = true
2023-02-20 10:14:12 +02:00
smallvec.workspace = true
tracing.workspace = true
2023-02-13 13:55:14 +02:00
triomphe.workspace = true
2020-03-07 15:27:03 +01:00
2023-02-13 13:55:14 +02:00
# local deps
base-db.workspace = true
cfg.workspace = true
hir-def.workspace = true
hir-expand.workspace = true
hir-ty.workspace = true
intern.workspace = true
2023-02-13 13:55:14 +02:00
stdx.workspace = true
syntax.workspace = true
tt.workspace = true
span.workspace = true
2023-11-13 20:54:53 +02:00
[features]
2024-04-20 18:44:27 +03:00
in-rust-tree = ["hir-expand/in-rust-tree"]
[lints]
workspace = true