rust-analyzer/crates/hir/Cargo.toml

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

36 lines
628 B
TOML
Raw Normal View History

2018-11-28 00:42:26 +00:00
[package]
2020-08-13 14:36:55 +00:00
name = "hir"
version = "0.0.0"
description = "TBD"
2023-02-13 11:55:14 +00:00
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
2018-11-28 00:42:26 +00:00
2019-11-17 15:35:05 +00:00
[lib]
doctest = false
2018-11-28 00:42:26 +00:00
[dependencies]
2020-02-18 13:57:41 +00:00
rustc-hash = "1.1.0"
2023-11-15 11:07:36 +00:00
either.workspace = true
2022-03-22 16:36:41 +00:00
arrayvec = "0.7.2"
2023-11-15 10:53:56 +00:00
itertools.workspace = true
2023-02-20 08:14:12 +00:00
smallvec.workspace = true
triomphe.workspace = true
once_cell = "1.17.1"
2020-03-07 14:27:03 +00:00
2023-02-13 11:55:14 +00:00
# local deps
base-db.workspace = true
cfg.workspace = true
hir-def.workspace = true
hir-expand.workspace = true
hir-ty.workspace = true
profile.workspace = true
stdx.workspace = true
syntax.workspace = true
tt.workspace = true
2023-11-13 18:54:53 +00:00
[features]
in-rust-tree = []