rust-analyzer/crates/base-db/Cargo.toml

35 lines
715 B
TOML
Raw Normal View History

[package]
2022-04-29 14:29:24 +00:00
name = "base-db"
2020-08-13 14:25:38 +00:00
version = "0.0.0"
repository.workspace = true
description = "Basic database traits for rust-analyzer. The concrete DB is defined by `ide` (aka `ra_ap_ide`)."
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
2019-11-17 15:35:05 +00:00
[lib]
doctest = false
[dependencies]
2024-01-10 09:53:11 +00:00
lz4_flex = { version = "0.11", default-features = false }
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
semver.workspace = true
tracing.workspace = true
# 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
[lints]
workspace = true