posix-errno

Crates.ioposix-errno
lib.rsposix-errno
version1.0.1
sourcesrc
created_at2022-09-06 02:25:09.995416
updated_at2022-09-08 07:31:50.203542
descriptionPOSIX error numbers
homepage
repositoryhttps://github.com/jmillikin/rust-posix-errno
max_upload_size
id659228
size6,981
John Millikin (jmillikin)

documentation

README

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" }
Commit count: 3

cargo fmt