rust/crates/stdx/Cargo.toml

25 lines
536 B
TOML
Raw Normal View History

[package]
name = "stdx"
2020-08-13 15:42:52 +00:00
version = "0.0.0"
description = "TBD"
2020-08-13 15:42:52 +00:00
license = "MIT OR Apache-2.0"
2021-10-21 15:49:28 +00:00
edition = "2021"
2021-12-15 20:49:48 +00:00
rust-version = "1.57"
[lib]
doctest = false
[dependencies]
2022-03-22 16:36:41 +00:00
libc = "0.2.121"
backtrace = { version = "0.3.64", optional = true }
2021-02-05 15:09:45 +00:00
always-assert = { version = "0.1.2", features = ["log"] }
# Think twice before adding anything here
[target.'cfg(windows)'.dependencies]
2021-12-04 13:17:30 +00:00
miow = "0.4.0"
2022-01-07 11:37:58 +00:00
winapi = { version = "0.3.9", features = ["winerror"] }
[features]
# Uncomment to enable for the whole crate graph
# default = [ "backtrace" ]