2020-03-28 10:01:25 +00:00
|
|
|
[package]
|
|
|
|
name = "stdx"
|
2020-08-13 15:42:52 +00:00
|
|
|
version = "0.0.0"
|
2020-08-24 11:06:30 +00:00
|
|
|
description = "TBD"
|
2023-02-13 11:55:14 +00:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
rust-version.workspace = true
|
2020-03-28 10:01:25 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-17 13:49:15 +00:00
|
|
|
backtrace = { version = "0.3.67", optional = true }
|
2021-02-05 15:09:45 +00:00
|
|
|
always-assert = { version = "0.1.2", features = ["log"] }
|
2023-06-05 09:04:23 +00:00
|
|
|
jod-thread = "0.1.2"
|
2023-11-16 20:27:35 +00:00
|
|
|
libc.workspace = true
|
2023-06-05 09:04:23 +00:00
|
|
|
crossbeam-channel = "0.5.5"
|
2023-12-11 09:16:01 +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-11 09:16:01 +00:00
|
|
|
miow = "0.6.0"
|
2022-01-07 11:37:58 +00:00
|
|
|
winapi = { version = "0.3.9", features = ["winerror"] }
|
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" ]
|
2024-01-03 09:35:07 +00:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|