rust/crates/hir-expand/Cargo.toml

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

38 lines
682 B
TOML
Raw Normal View History

2019-10-29 03:15:51 -05:00
[package]
2022-04-29 09:29:24 -05:00
name = "hir-expand"
2020-08-13 09:26:29 -05:00
version = "0.0.0"
description = "TBD"
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
2019-10-29 03:15:51 -05:00
2019-11-17 09:35:05 -06:00
[lib]
doctest = false
2019-10-29 03:15:51 -05:00
[dependencies]
cov-mark = "2.0.0-pre.1"
2022-06-10 09:30:09 -05:00
tracing = "0.1.35"
2022-07-03 01:42:41 -05:00
either = "1.7.0"
2022-03-22 11:36:41 -05:00
rustc-hash = "1.1.0"
la-arena.workspace = true
itertools = "0.10.5"
2023-06-18 11:44:09 -05:00
hashbrown.workspace = true
smallvec.workspace = true
2023-05-02 09:12:22 -05:00
triomphe.workspace = true
# local deps
stdx.workspace = true
intern.workspace = true
base-db.workspace = true
cfg.workspace = true
syntax.workspace = true
profile.workspace = true
tt.workspace = true
mbe.workspace = true
limit.workspace = true
2022-02-07 13:30:28 -06:00
[dev-dependencies]
expect-test = "1.4.0"