# cargo-features = ["edition2021"] [package] name = "chatora-errno" version = "1.0.2" authors = ["takaomag "] # edition = "2021" edition = "2018" description = "A thin Rust wrapper library around libc errno interface" documentation = "https://docs.rs/chatora-errno" readme = "README.md" # homepage = "https://chatora-errno.rs/" # repository = "https://github.com/takaomag/chatora-errno" license = "MIT OR Apache-2.0" # license-file = "LICENSE.txt" keywords = ["errno"] categories = ["os"] build = false exclude = [ "**/.devcontainer.json", "**/.devcontainer/", "**/.editorconfig", "**/.editorconfig.d/", "**/.vscode/", "**/*.code-workspace", "**/.clippy.toml", "**/clippy.toml", "**/.rustfmt.toml", "**/rustfmt.toml", "**/rust-toolchain", "**/rust-toolchain.toml", "/README.tpl", ] publish = true resolver = "2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] path = "src/lib.rs" test = true bench = false [target.'cfg(target_os = "linux")'.dependencies] libc = "0.2" [target.'cfg(target_os = "wasi")'.dependencies] libc = "0.2" [dev-dependencies] doc-comment = "0.3" [profile.release] # panic = "abort" lto = true codegen-units = 1