-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
41 lines (38 loc) · 950 Bytes
/
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
[package]
name = "sherif"
version = "1.0.1"
edition = "2021"
license = "MIT"
authors = ["Tom Lienard"]
description = "Opinionated, zero-config linter for JavaScript monorepos."
homepage = "https://github.com/QuiiBz/sherif"
repository = "https://github.com/QuiiBz/sherif"
keywords = [
"cli",
"javascript",
"monorepo",
"linter",
]
categories = ["development-tools"]
readme = "./README.md"
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.3", features = ["derive"] }
colored = "2.0.4"
detect-indent = "0.1.0"
detect-newline-style = "0.1.2"
indexmap = { version = "2.0.0", features = ["serde"] }
inquire = "0.6.2"
semver = "1.0.18"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = { version = "1.0.107", features = ["preserve_order"] }
serde_yaml = "0.9.25"
[dev-dependencies]
debugless-unwrap = "0.0.4"
insta = "1.32.0"
[profile.release]
strip = "symbols"
opt-level = "z"
lto = "thin"
codegen-units = 1
panic = "abort"