aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/Cargo.toml
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-11-28 00:42:26 +0000
committerAleksey Kladov <[email protected]>2018-11-28 00:42:26 +0000
commit0e4b710af83844f4a7c471c5335c99aaaa25a90c (patch)
treea073635942db7431b93e191aa98201a01e3fc2cd /crates/ra_hir/Cargo.toml
parentf66e5b6e6b6f7b2b899ef4207dfe46655d77334c (diff)
introduce hir crate
Diffstat (limited to 'crates/ra_hir/Cargo.toml')
-rw-r--r--crates/ra_hir/Cargo.toml17
1 files changed, 17 insertions, 0 deletions
diff --git a/crates/ra_hir/Cargo.toml b/crates/ra_hir/Cargo.toml
new file mode 100644
index 000000000..9bde289e7
--- /dev/null
+++ b/crates/ra_hir/Cargo.toml
@@ -0,0 +1,17 @@
1[package]
2edition = "2018"
3name = "ra_hir"
4version = "0.1.0"
5authors = ["Aleksey Kladov <[email protected]>"]
6
7[dependencies]
8log = "0.4.5"
9relative-path = "0.4.0"
10salsa = "0.8.0"
11rustc-hash = "1.0"
12parking_lot = "0.6.4"
13id-arena = { git = "https://github.com/fitzgen/id-arena/", rev = "43ecd67" }
14ra_syntax = { path = "../ra_syntax" }
15ra_editor = { path = "../ra_editor" }
16ra_db = { path = "../ra_db" }
17test_utils = { path = "../test_utils" }