2020-03-28 10:01:25 +00:00
|
|
|
[package]
|
|
|
|
name = "stdx"
|
2020-08-13 15:42:52 +00:00
|
|
|
version = "0.0.0"
|
2024-07-30 12:11:16 +00:00
|
|
|
repository = "https://github.com/rust-lang/rust-analyzer"
|
2024-07-30 12:10:08 +00:00
|
|
|
description = "Missing batteries for standard libraries for rust-analyzer."
|
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
|
2020-03-28 10:01:25 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-18 16:44:09 +00:00
|
|
|
backtrace = { version = "0.3.67", optional = true }
|
2024-01-18 02:27:38 +00:00
|
|
|
always-assert = { version = "0.2.0", features = ["tracing"] }
|
2023-05-20 12:29:32 +00:00
|
|
|
jod-thread = "0.1.2"
|
2023-11-16 19:48:49 +00:00
|
|
|
libc.workspace = true
|
2023-05-25 07:04:51 +00:00
|
|
|
crossbeam-channel = "0.5.5"
|
2023-11-24 15:38:48 +00:00
|
|
|
itertools.workspace = true
|
2020-03-28 10:01:25 +00:00
|
|
|
# Think twice before adding anything here
|
2021-01-14 11:55:13 +00:00
|
|
|
|
2021-04-20 13:06:20 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-12-07 10:48:58 +00:00
|
|
|
miow = "0.6.0"
|
2024-05-01 14:04:13 +00:00
|
|
|
windows-sys = { version = "0.52", features = ["Win32_Foundation"] }
|
2021-04-20 13:06:20 +00:00
|
|
|
|
2021-01-14 11:55:13 +00:00
|
|
|
[features]
|
|
|
|
# Uncomment to enable for the whole crate graph
|
|
|
|
# default = [ "backtrace" ]
|
2023-12-29 14:22:29 +00:00
|
|
|
|
|
|
|
[lints]
|
2024-02-01 15:16:38 +00:00
|
|
|
workspace = true
|