• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14rust-version = "1.56"
15name = "errno"
16version = "0.3.10"
17authors = ["Chris Wong <lambda.fairy@gmail.com>"]
18build = false
19autolib = false
20autobins = false
21autoexamples = false
22autotests = false
23autobenches = false
24description = "Cross-platform interface to the `errno` variable."
25documentation = "https://docs.rs/errno"
26readme = "README.md"
27categories = [
28    "no-std",
29    "os",
30]
31license = "MIT OR Apache-2.0"
32repository = "https://github.com/lambda-fairy/rust-errno"
33
34[lib]
35name = "errno"
36path = "src/lib.rs"
37
38[features]
39default = ["std"]
40std = ["libc/std"]
41
42[target.'cfg(target_os="hermit")'.dependencies.libc]
43version = "0.2"
44default-features = false
45
46[target.'cfg(target_os="wasi")'.dependencies.libc]
47version = "0.2"
48default-features = false
49
50[target."cfg(unix)".dependencies.libc]
51version = "0.2"
52default-features = false
53
54[target."cfg(windows)".dependencies.windows-sys]
55version = ">=0.52, <=0.59"
56features = [
57    "Win32_Foundation",
58    "Win32_System_Diagnostics_Debug",
59]
60