2018-11-28 00:42:26 +00:00
|
|
|
[package]
|
2020-08-13 14:36:55 +00:00
|
|
|
name = "hir"
|
|
|
|
version = "0.0.0"
|
2024-08-05 22:23:22 +00:00
|
|
|
repository.workspace = true
|
2024-08-03 15:51:31 +00:00
|
|
|
description = "A high-level object-oriented access to Rust code for rust-analyzer."
|
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]
|
2023-12-18 13:53:11 +00:00
|
|
|
rustc-hash.workspace = true
|
2023-11-15 11:07:36 +00:00
|
|
|
either.workspace = true
|
2023-12-20 11:53:46 +00:00
|
|
|
arrayvec.workspace = true
|
2023-11-15 10:53:56 +00:00
|
|
|
itertools.workspace = true
|
2023-02-20 08:14:12 +00:00
|
|
|
smallvec.workspace = true
|
2024-01-18 02:27:38 +00:00
|
|
|
tracing.workspace = true
|
2023-02-13 11:55:14 +00:00
|
|
|
triomphe.workspace = true
|
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
|
2024-06-07 19:10:27 +00:00
|
|
|
intern.workspace = true
|
2023-02-13 11:55:14 +00:00
|
|
|
stdx.workspace = true
|
|
|
|
syntax.workspace = true
|
|
|
|
tt.workspace = true
|
2024-01-27 15:36:01 +00:00
|
|
|
span.workspace = true
|
2023-11-13 18:54:53 +00:00
|
|
|
|
|
|
|
[features]
|
2024-04-20 15:44:27 +00:00
|
|
|
in-rust-tree = ["hir-expand/in-rust-tree"]
|
2023-12-29 14:22:29 +00:00
|
|
|
|
|
|
|
[lints]
|
2024-01-27 15:36:01 +00:00
|
|
|
workspace = true
|