rust/crates/stdx/Cargo.toml

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

25 lines
544 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"
rust-version.workspace = true
[lib]
doctest = false
[dependencies]
2022-10-15 04:55:56 -05:00
libc = "0.2.135"
2022-06-10 09:30:09 -05:00
backtrace = { version = "0.3.65", 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]
miow = "0.5.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" ]