rust/crates/stdx/Cargo.toml

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

32 lines
683 B
TOML
Raw Normal View History

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