-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.26 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (46 loc) · 1.26 KB
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
[workspace]
resolver = "2"
members = [
"common/cli",
"common/fw",
"common/bin",
"common/ipk",
"common/verify",
"common/webdetect",
"packages/elf-verify",
"packages/ipk-verify",
"packages/fw-extract",
"packages/gen-manifest",
]
[workspace.package]
version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
authors = ["Mariotaku Lee <mariotaku.lee@gmail.com>"]
repository = "https://github.com/webosbrew/dev-toolbox-cli"
homepage = "https://github.com/webosbrew/dev-toolbox-cli"
keywords = ["webos", "lg", "cli"]
categories = ["command-line-utilities"]
[profile.release]
strip = true
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
# This codebase writes an explicit `return` in every function that returns a
# value. Keep that style.
needless_return = "allow"
# These crates are internal to the workspace, not a published API.
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
# The report writers walk a lot of cases in one pass. Splitting them up would
# not make them easier to follow.
too_many_lines = "allow"
[workspace.dependencies]
clap = "4.5.20"
debpkg = "0.6.0"
path-slash = "0.2.1"
regex = "1.11.1"
serde = "1.0.214"
serde_json = "1.0.132"
semver = "1.0.23"
tempfile = "3.13.0"