2 stable releases

Uses old Rust 2015

1.0.1 Sep 8, 2022
1.0.0 Sep 6, 2022

#941 in Unix APIs

Download history 230/week @ 2024-11-16 269/week @ 2024-11-23 337/week @ 2024-11-30 311/week @ 2024-12-07 209/week @ 2024-12-14 297/week @ 2024-12-21 177/week @ 2024-12-28 261/week @ 2025-01-04 320/week @ 2025-01-11 143/week @ 2025-01-18 340/week @ 2025-01-25 242/week @ 2025-02-01 206/week @ 2025-02-08 217/week @ 2025-02-15 263/week @ 2025-02-22 237/week @ 2025-03-01

941 downloads per month
Used in 3 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