rust/crates/ra_hir_ty/Cargo.toml

41 lines
949 B
TOML
Raw Normal View History

2019-11-26 14:35:23 +03:00
[package]
edition = "2018"
name = "ra_hir_ty"
version = "0.1.0"
authors = ["rust-analyzer developers"]
[lib]
doctest = false
[dependencies]
itertools = "0.9.0"
2019-11-27 17:46:02 +03:00
arrayvec = "0.5.1"
2020-03-24 04:40:58 -07:00
smallvec = "1.2.0"
2020-05-01 15:29:03 +03:00
ena = "0.14.0"
2020-02-18 15:57:41 +02:00
log = "0.4.8"
rustc-hash = "1.1.0"
2019-11-26 14:35:23 +03:00
2020-03-28 11:08:19 +01:00
stdx = { path = "../stdx" }
2019-11-27 21:23:31 +03:00
hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
hir_expand = { path = "../ra_hir_expand", package = "ra_hir_expand" }
2019-11-26 14:35:23 +03:00
ra_arena = { path = "../ra_arena" }
ra_db = { path = "../ra_db" }
ra_prof = { path = "../ra_prof" }
2019-11-27 21:23:31 +03:00
ra_syntax = { path = "../ra_syntax" }
test_utils = { path = "../test_utils" }
2019-11-26 14:35:23 +03:00
scoped-tls = "1"
2020-07-11 19:17:03 +02:00
chalk-solve = { version = "0.17.0" }
chalk-ir = { version = "0.17.0" }
chalk-recursive = { version = "0.17.0" }
2019-11-26 14:35:23 +03:00
[dev-dependencies]
2020-04-14 13:57:02 -04:00
insta = "0.16.0"
2020-07-09 17:33:49 +02:00
expect = { path = "../expect" }
2020-07-10 18:30:32 +02:00
tracing = "0.1"
tracing-subscriber = { version = "0.2", default-features = false, features = ["env-filter", "registry"] }
tracing-tree = { version = "0.1.3" }