-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathCargo.toml
44 lines (39 loc) · 1.17 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
# spell-checker:ignore bigdecimal cfgs extendedbigdecimal
[package]
name = "uu_seq"
description = "seq ~ (uutils) display a sequence of numbers"
repository = "https://github.com/uutils/coreutils/tree/main/src/uu/seq"
version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
keywords.workspace = true
categories.workspace = true
edition.workspace = true
readme.workspace = true
[lib]
path = "src/seq.rs"
[dependencies]
bigdecimal = { workspace = true }
clap = { workspace = true }
num-bigint = { workspace = true }
num-traits = { workspace = true }
thiserror = { workspace = true }
uucore = { workspace = true, features = [
"extendedbigdecimal",
"fast-inc",
"format",
"parser",
"quoting-style",
] }
[[bin]]
name = "seq"
path = "src/main.rs"
# FIXME: this is the only crate that has a separate lints configuration,
# which for now means a full copy of all clippy and rust lints here.
[lints.clippy]
all = { level = "deny", priority = -1 }
# Allow "fuzzing" as a "cfg" condition name
# https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }