-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
60 lines (50 loc) · 1.39 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# SPDX-FileCopyrightText: 2022 Shun Sakai
# SPDX-FileCopyrightText: 2023 zSchoen
#
# SPDX-License-Identifier: Apache-2.0 OR MIT
[package]
name = "sysexits"
version = "0.8.5"
authors = ["Shun Sakai <[email protected]>"]
edition = "2021"
rust-version = "1.62.0"
description = "The system exit codes as defined by <sysexits.h>"
documentation = "https://docs.rs/sysexits"
readme = "README.md"
repository = "https://github.com/sorairolake/sysexits-rs"
license = "Apache-2.0 OR MIT"
keywords = ["exitcode", "sysexits"]
categories = ["command-line-interface", "no-std", "os"]
include = ["/LICENSES", "/README.md", "/src"]
[package.metadata.docs.rs]
all-features = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[example]]
name = "cat"
path = "examples/cat.rs"
required-features = ["std"]
[[example]]
name = "cmp"
path = "examples/cmp.rs"
required-features = ["std"]
[[example]]
name = "isutf8"
path = "examples/isutf8.rs"
required-features = ["std"]
[dev-dependencies]
clap = { version = "4.5.23", features = ["derive"] }
proptest = "1.6.0"
test-strategy = "0.4.0"
[features]
default = ["std"]
std = []
nightly = ["extended_io_error"]
extended_io_error = ["std"]
[lints.clippy]
cargo = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
missing_debug_implementations = "deny"
rust_2018_idioms = { level = "warn", priority = -1 }
unsafe_code = "forbid"