rust/crates/hir/Cargo.toml

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

32 lines
559 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"
description = "TBD"
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]
2020-02-18 15:57:41 +02:00
rustc-hash = "1.1.0"
2022-07-03 09:42:41 +03:00
either = "1.7.0"
2022-03-22 17:36:41 +01:00
arrayvec = "0.7.2"
2022-10-18 09:12:49 +03:00
itertools = "0.10.5"
2023-02-20 10:14:12 +02:00
smallvec.workspace = true
2023-02-13 13:55:14 +02:00
once_cell = "1.17.0"
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
profile.workspace = true
stdx.workspace = true
syntax.workspace = true
tt.workspace = true