rust-analyzer/crates/hir-expand/Cargo.toml

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

47 lines
896 B
TOML
Raw Normal View History

2019-10-29 08:15:51 +00:00
[package]
2022-04-29 14:29:24 +00:00
name = "hir-expand"
2020-08-13 14:26:29 +00:00
version = "0.0.0"
repository.workspace = true
description = "Macro expansion for rust-analyzer."
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
2019-10-29 08:15:51 +00:00
2019-11-17 15:35:05 +00:00
[lib]
doctest = false
2019-10-29 08:15:51 +00:00
[dependencies]
cov-mark = "2.0.0-pre.1"
2023-11-15 11:00:32 +00:00
tracing.workspace = true
2023-11-15 11:07:36 +00:00
either.workspace = true
rustc-hash.workspace = true
la-arena.workspace = true
2023-11-15 10:53:56 +00:00
itertools.workspace = true
2023-06-18 16:44:09 +00:00
hashbrown.workspace = true
smallvec.workspace = true
2023-05-02 14:12:22 +00:00
triomphe.workspace = true
# local deps
stdx.workspace = true
intern.workspace = true
base-db.workspace = true
cfg.workspace = true
syntax.workspace = true
tt.workspace = true
mbe.workspace = true
limit.workspace = true
2023-12-18 12:30:41 +00:00
span.workspace = true
2024-01-30 15:57:40 +00:00
parser.workspace = true
syntax-bridge.workspace = true
2022-02-07 19:30:28 +00:00
[dev-dependencies]
expect-test = "1.4.0"
2024-04-20 15:44:27 +00:00
[features]
in-rust-tree = ["syntax/in-rust-tree"]
[lints]
2024-03-04 10:10:06 +00:00
workspace = true