rust-analyzer/crates/stdx/Cargo.toml

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

34 lines
810 B
TOML
Raw Normal View History

[package]
name = "stdx"
2020-08-13 15:42:52 +00:00
version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
description = "Missing batteries for standard libraries for rust-analyzer."
authors.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
[lib]
doctest = false
[dependencies]
2023-06-18 16:44:09 +00:00
backtrace = { version = "0.3.67", optional = true }
always-assert = { version = "0.2.0", features = ["tracing"] }
jod-thread = "0.1.2"
2023-11-16 19:48:49 +00:00
libc.workspace = true
crossbeam-channel = "0.5.5"
2023-11-24 15:38:48 +00:00
itertools.workspace = true
# Think twice before adding anything here
[target.'cfg(windows)'.dependencies]
2023-12-07 10:48:58 +00:00
miow = "0.6.0"
windows-sys = { version = "0.52", features = ["Win32_Foundation"] }
[features]
# Uncomment to enable for the whole crate graph
# default = [ "backtrace" ]
[lints]
workspace = true