-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
43 lines (36 loc) · 1.26 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
[package]
name = "nrr"
version = "0.9.5"
edition = "2021"
rust-version = "1.78"
description = "Minimal, blazing fast npm scripts runner"
authors = ["Ryan Cao <[email protected]>"]
license = "GPL-3.0-only"
repository = "https://github.com/ryanccn/nrr.git"
categories = ["command-line-utilities", "development-tools"]
keywords = ["cli", "node", "javascript", "npm", "scripts"]
[dependencies]
ahash = "0.8.11"
clap = { version = "4.5.23", features = ["derive", "env"] }
color-eyre = { version = "0.6.3", default-features = false }
ctrlc = "3.4.5"
dotenvy = "0.15.7"
indexmap = { version = "2.7.0", features = ["serde"] }
itoa = "1.0.14"
owo-colors = { version = "4.1.0", features = ["supports-colors"] }
serde = { version = "1.0.216", features = ["derive"] }
shlex = "1.3.0"
simd-json = "0.14.3"
strsim = "0.11.1"
terminal_size = "0.4.1"
unicode-width = "0.2.0"
[dev-dependencies]
trycmd = "0.15.8"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
perf = { level = "warn", priority = -1 }
redundant_closure_for_method_calls = "allow"
module_name_repetitions = "allow"
[lints.rust]
unsafe_code = "forbid"