rust-analyzer/crates/intern/Cargo.toml

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

26 lines
543 B
TOML
Raw Normal View History

[package]
name = "intern"
version = "0.0.0"
repository.workspace = true
description = "Global `Arc`-based object interning infrastructure for rust-analyzer."
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
[lib]
doctest = false
[dependencies]
# We need to freeze the version of the crate, as the raw-api feature is considered unstable
2023-12-07 10:48:58 +00:00
dashmap.workspace = true
2023-06-18 16:44:09 +00:00
hashbrown.workspace = true
rustc-hash.workspace = true
2023-05-02 14:12:22 +00:00
triomphe.workspace = true
2024-07-12 10:26:23 +00:00
sptr = "0.3.2"
[lints]
2024-07-12 10:26:23 +00:00
workspace = true