2018-11-28 00:25:20 +00:00
|
|
|
[package]
|
2022-04-29 14:29:24 +00:00
|
|
|
name = "base-db"
|
2020-08-13 14:25:38 +00:00
|
|
|
version = "0.0.0"
|
2024-07-30 12:11:16 +00:00
|
|
|
repository = "https://github.com/rust-lang/rust-analyzer"
|
2024-08-03 15:51:31 +00:00
|
|
|
description = "Basic database traits for rust-analyzer. The concrete DB is defined by `ide` (aka `ra_ap_ide`)."
|
2023-01-16 15:41:47 +00:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2023-01-16 15:33:01 +00:00
|
|
|
rust-version.workspace = true
|
2018-11-28 00:25:20 +00:00
|
|
|
|
2019-11-17 15:35:05 +00:00
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
2018-11-28 00:25:20 +00:00
|
|
|
[dependencies]
|
2024-01-10 09:53:11 +00:00
|
|
|
lz4_flex = { version = "0.11", default-features = false }
|
|
|
|
|
2023-06-19 10:44:09 +00:00
|
|
|
la-arena.workspace = true
|
2024-02-07 15:29:46 +00:00
|
|
|
salsa.workspace = true
|
2023-12-07 09:57:51 +00:00
|
|
|
rustc-hash.workspace = true
|
|
|
|
triomphe.workspace = true
|
2023-12-19 11:53:10 +00:00
|
|
|
semver.workspace = true
|
2024-01-18 02:27:38 +00:00
|
|
|
tracing.workspace = true
|
2023-04-05 06:41:13 +00:00
|
|
|
|
2023-01-17 09:52:26 +00:00
|
|
|
# local deps
|
|
|
|
cfg.workspace = true
|
|
|
|
stdx.workspace = true
|
|
|
|
syntax.workspace = true
|
|
|
|
vfs.workspace = true
|
2023-12-18 12:30:41 +00:00
|
|
|
span.workspace = true
|
2024-07-16 10:05:16 +00:00
|
|
|
intern.workspace = true
|
2023-12-29 14:22:29 +00:00
|
|
|
|
|
|
|
[lints]
|
2024-01-18 02:27:38 +00:00
|
|
|
workspace = true
|