rust-analyzer/crates/ra-salsa/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
737 B
TOML
Raw Normal View History

2024-02-07 15:29:46 +00:00
[package]
name = "salsa"
version = "0.0.0"
authors = ["Salsa developers"]
edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/salsa-rs/salsa"
description = "A generic framework for on-demand, incrementalized computation (experimental)"
rust-version.workspace = true
[lib]
2024-10-04 19:48:11 +00:00
name = "ra_salsa"
2024-02-07 15:29:46 +00:00
[dependencies]
indexmap = "2.1.0"
lock_api = "0.4"
tracing = "0.1"
parking_lot = "0.12.1"
rustc-hash = "2.0.0"
2024-02-07 15:29:46 +00:00
smallvec = "1.0.0"
oorandom = "11"
triomphe = "0.1.11"
2024-02-22 20:13:52 +00:00
itertools.workspace = true
2024-02-07 15:29:46 +00:00
2024-10-04 19:48:11 +00:00
ra-salsa-macros = { version = "0.0.0", path = "ra-salsa-macros", package = "salsa-macros" }
2024-02-07 15:29:46 +00:00
[dev-dependencies]
2024-02-07 15:30:07 +00:00
linked-hash-map = "0.5.6"
rand = "0.8.5"
2024-02-07 15:30:20 +00:00
expect-test = "1.4.0"
2024-02-07 15:34:21 +00:00
dissimilar = "1.0.7"
2024-02-07 15:53:27 +00:00
[lints]
workspace = true