2 stable releases

Uses old Rust 2015

1.0.1 Sep 8, 2022
1.0.0 Sep 6, 2022

#859 in Unix APIs

Download history 142/week @ 2024-04-11 135/week @ 2024-04-18 132/week @ 2024-04-25 124/week @ 2024-05-02 183/week @ 2024-05-09 104/week @ 2024-05-16 84/week @ 2024-05-23 148/week @ 2024-05-30 408/week @ 2024-06-06 208/week @ 2024-06-13 204/week @ 2024-06-20 148/week @ 2024-06-27 204/week @ 2024-07-04 208/week @ 2024-07-11 148/week @ 2024-07-18 122/week @ 2024-07-25

697 downloads per month
Used in 2 crates

0BSD license

7KB
86 lines

POSIX error numbers for Rust

This library defines a single type, the Error enum, which represents the symbolic constants for error numbers defined in the POSIX standard.

To depend on posix-errno from a Bazel workspace:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "rust_posix_errno",
    # Obtain the package checksum from the release page:
    # https://github.com/jmillikin/rust-posix-errno/releases/tag/v1.0.1
    sha256 = "",
    strip_prefix = "posix-errno-1.0.1",
    urls = ["https://github.com/jmillikin/rust-posix-errno/releases/download/v1.0.1/posix-errno-1.0.1.tar.xz"],
)

To depend on posix-errno from a Cargo workspace:

[dependencies]
posix-errno = { version = "1.0.1" }

lib.rs:

This library defines a single type, the [Error] enum, which represents the symbolic constants for error numbers defined in the POSIX standard.

No runtime deps