2020-03-28 11:01:25 +01:00
|
|
|
[package]
|
|
|
|
name = "stdx"
|
2020-08-13 17:42:52 +02:00
|
|
|
version = "0.0.0"
|
2020-08-24 13:06:30 +02:00
|
|
|
description = "TBD"
|
2023-01-16 16:41:47 +01:00
|
|
|
|
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2023-01-16 16:33:01 +01:00
|
|
|
rust-version.workspace = true
|
2020-03-28 11:01:25 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-18 18:44:09 +02:00
|
|
|
backtrace = { version = "0.3.67", optional = true }
|
2024-01-17 18:27:38 -08:00
|
|
|
always-assert = { version = "0.2.0", features = ["tracing"] }
|
2023-05-20 22:29:32 +10:00
|
|
|
jod-thread = "0.1.2"
|
2023-11-16 21:48:49 +02:00
|
|
|
libc.workspace = true
|
2023-05-25 17:04:51 +10:00
|
|
|
crossbeam-channel = "0.5.5"
|
2023-11-24 16:38:48 +01:00
|
|
|
itertools.workspace = true
|
2020-03-28 11:01:25 +01:00
|
|
|
# Think twice before adding anything here
|
2021-01-14 14:55:13 +03:00
|
|
|
|
2021-04-20 16:06:20 +03:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-12-07 11:48:58 +01:00
|
|
|
miow = "0.6.0"
|
2022-01-07 12:37:58 +01:00
|
|
|
winapi = { version = "0.3.9", features = ["winerror"] }
|
2021-04-20 16:06:20 +03:00
|
|
|
|
2021-01-14 14:55:13 +03:00
|
|
|
[features]
|
|
|
|
# Uncomment to enable for the whole crate graph
|
|
|
|
# default = [ "backtrace" ]
|
2023-12-29 23:22:29 +09:00
|
|
|
|
|
|
|
[lints]
|
2024-02-01 16:16:38 +01:00
|
|
|
workspace = true
|