-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
100 lines (94 loc) · 3.22 KB
/
Cargo.toml
File metadata and controls
100 lines (94 loc) · 3.22 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
edition = "2024"
rust-version = "1.90"
homepage = "https://github.com/MatthewMckee4/seal"
repository = "https://github.com/MatthewMckee4/seal"
authors = ["Matthew Mckee <matthewmckee04@yahoo.co.uk>"]
license = "MIT"
[workspace.dependencies]
seal_bump = { path = "crates/seal_bump" }
seal_changelog = { path = "crates/seal_changelog" }
seal_cli = { path = "crates/seal_cli" }
seal_command = { path = "crates/seal_command" }
seal_file_change = { path = "crates/seal_file_change" }
seal_fs = { path = "crates/seal_fs" }
seal_github = { path = "crates/seal_github" }
seal_logging = { path = "crates/seal_logging" }
seal_macros = { path = "crates/seal_macros" }
seal_options_metadata = { path = "crates/seal_options_metadata" }
seal_project = { path = "crates/seal_project" }
seal_terminal = { path = "crates/seal_terminal" }
seal_version = { path = "crates/seal_version" }
anstream = { version = "0.6.21" }
anyhow = { version = "1.0.100" }
assert_cmd = { version = "2.1" }
assert_fs = { version = "1.1" }
chrono = { version = "0.4.43" }
clap = { version = "4.5.54", features = ["derive", "env", "string", "wrap_help"] }
console = { version = "0.15.11" }
dunce = { version = "1.0.5" }
fs-err = { version = "3.2.2", features = ["tokio"] }
glob = { version = "0.3.3" }
insta = { version = "1.46", features = ["filters", "json"] }
itertools = { version = "0.14.0" }
jiff = { version = "0.2.18", features = ["serde"] }
markdown = { version = "1.0.0" }
octocrab = { version = "0.48" }
owo-colors = { version = "4.2.3" }
pretty_assertions = { version = "1.4.1" }
proc-macro2 = { version = "1.0.105" }
quote = { version = "1.0.43" }
regex = { version = "1.12.2" }
semver = { version = "1.0" }
serde = { version = "1.0.228", features = ["derive", "rc"] }
serde_json = { version = "1.0" }
similar = { version = "2.7", features = ["inline"] }
syn = { version = "2.0.114" }
tempfile = { version = "3.24" }
textwrap = { version = "0.16.2" }
thiserror = { version = "2.0" }
tokio = { version = "1", features = ["rt", "macros"] }
toml = { version = "0.9" }
tracing = { version = "0.1.44" }
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
which = { version = "8.0.0" }
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -2 }
# Allowed pedantic lints
char_lit_as_u8 = "allow"
collapsible_else_if = "allow"
collapsible_if = "allow"
implicit_hasher = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
similar_names = "allow"
struct_excessive_bools = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
used_underscore_binding = "allow"
# Disallowed restriction lints
print_stdout = "warn"
print_stderr = "warn"
dbg_macro = "warn"
empty_drop = "warn"
empty_structs_with_brackets = "warn"
exit = "warn"
get_unwrap = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
rest_pat_in_fully_bound_structs = "warn"
if_not_else = "allow"
use_self = "warn"
# Diagnostics are not actionable: Enable once https://github.com/rust-lang/rust-clippy/issues/13774 is resolved.
large_stack_arrays = "allow"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"