-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 848 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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["Brandon LeBlanc <[email protected]>"]
repository = "https://github.com/demosdemon/git-remote-codecommit"
homepage = "https://github.com/demosdemon/git-remote-codecommit"
edition = "2021"
license = "MIT or Apache-2.0"
publish = false
[workspace.lints.rust]
let_underscore_drop = "warn"
# unused_crate_dependencies = "warn"
non_ascii_idents = "deny"
[workspace.lints.clippy]
uninlined_format_args = "warn"
cargo_common_metadata = "warn"
# multiple_crate_versions = "warn"
negative_feature_names = "warn"
redundant_feature_names = "warn"
wildcard_dependencies = "deny"
unwrap_used = "warn"
[profile.release-lto]
inherits = "release"
lto = "fat"