2018-11-28 03:25:20 +03:00
|
|
|
[package]
|
|
|
|
edition = "2018"
|
|
|
|
name = "ra_db"
|
|
|
|
version = "0.1.0"
|
2019-02-11 10:20:04 +02:00
|
|
|
authors = ["rust-analyzer developers"]
|
2020-07-14 10:57:26 +09:00
|
|
|
license = "MIT OR Apache-2.0"
|
2018-11-28 03:25:20 +03:00
|
|
|
|
2019-11-17 18:35:05 +03:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2018-11-28 03:25:20 +03:00
|
|
|
[dependencies]
|
2020-07-22 18:44:40 +02:00
|
|
|
salsa = "0.15.2"
|
2020-02-18 15:57:41 +02:00
|
|
|
rustc-hash = "1.1.0"
|
2019-01-25 23:27:16 +03:00
|
|
|
|
2020-08-12 18:26:51 +02:00
|
|
|
syntax = { path = "../syntax" }
|
2020-08-13 10:19:09 +02:00
|
|
|
cfg = { path = "../cfg" }
|
2020-08-12 16:32:36 +02:00
|
|
|
profile = { path = "../profile" }
|
2020-08-12 16:46:20 +02:00
|
|
|
tt = { path = "../tt" }
|
2019-11-03 20:53:17 +03:00
|
|
|
test_utils = { path = "../test_utils" }
|
2020-06-11 11:04:09 +02:00
|
|
|
vfs = { path = "../vfs" }
|
|
|
|
stdx = { path = "../stdx" }
|