-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 1.08 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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.package]
version = "0.1.2"
authors = ["Brandon LeBlanc <brandon@leblanc.codes>"]
repository = "https://github.com/demosdemon/git-remote-codecommit"
homepage = "https://github.com/demosdemon/git-remote-codecommit"
edition = "2024"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["git", "git-remote", "codecommit"]
categories = ["command-line-utilities", "development-tools"]
publish = true
rust-version = "1.91.1"
[workspace.lints.rust]
let_underscore_drop = "warn"
non_ascii_idents = "deny"
[workspace.lints.clippy]
# struct_excessive_bools = "allow"
missing_panics_doc = "allow"
missing_errors_doc = "allow"
# unreadable_literal = "allow"
pedantic = { level = "warn", priority = -1 }
cargo_common_metadata = "warn"
negative_feature_names = "warn"
redundant_feature_names = "warn"
unwrap_used = "warn"
undocumented_unsafe_blocks = "warn"
[profile.release-lto]
inherits = "release"
lto = "fat"
codegen-units = 1
strip = "debuginfo"