rust/crates/stdx/Cargo.toml

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

25 lines
536 B
TOML
Raw Normal View History

[package]
name = "stdx"
2020-08-13 10:42:52 -05:00
version = "0.0.0"
description = "TBD"
2020-08-13 10:42:52 -05:00
license = "MIT OR Apache-2.0"
2021-10-21 10:49:28 -05:00
edition = "2021"
2021-12-15 14:49:48 -06:00
rust-version = "1.57"
[lib]
doctest = false
[dependencies]
2022-03-22 11:36:41 -05:00
libc = "0.2.121"
backtrace = { version = "0.3.64", optional = true }
2021-02-05 09:09:45 -06:00
always-assert = { version = "0.1.2", features = ["log"] }
# Think twice before adding anything here
[target.'cfg(windows)'.dependencies]
2021-12-04 07:17:30 -06:00
miow = "0.4.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" ]