-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
88 lines (80 loc) · 2.16 KB
/
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
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
[package]
name = "cargo-multivers"
version = "0.9.0"
description = "Cargo subcommand to build multiple versions of the same binary, each with a different CPU features set, merged into a single portable optimized binary"
edition.workspace = true
readme = "README.md"
license.workspace = true
categories = [
"hardware-support",
"command-line-utilities",
"development-tools::cargo-plugins",
]
keywords = ["performance", "optimization", "cargo", "cpu", "multivers"]
rust-version.workspace = true
repository.workspace = true
include = ["README.md", "CHANGELOG.md", "/src/*", "/LICENSE*"]
[workspace.package]
rust-version = "1.80"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ronnychevalier/cargo-multivers"
[dependencies]
anyhow = "1.0.70"
escargot = "0.5.8"
clap = { version = "4.4", features = ["derive", "cargo"] }
clap-cargo = { version = "0.14", features = ["cargo_metadata"] }
cargo_metadata = "0.18"
target-lexicon = { version = "0.12", features = ["std"] }
console = "0.15"
indicatif = "0.17"
rayon = "1.8"
serde = { version = "1.0.184", features = ["derive"] }
sha3 = "0.10"
serde_json = "1"
itertools = "0.13"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3.8.1"
[profile.release]
lto = true
strip = "symbols"
[workspace]
resolver = "2"
members = ["multivers-runner"]
exclude = [
"tests/test-argv",
"tests/test-nothing",
"tests/test-workspace",
"tests/test-nobin",
]
[workspace.lints.rust]
missing_docs = "warn"
trivial_numeric_casts = "warn"
improper_ctypes = "warn"
improper_ctypes_definitions = "warn"
non_ascii_idents = "warn"
rust_2018_idioms = "warn"
rust_2024_compatibility = "warn"
single_use_lifetimes = "warn"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] }
[workspace.lints.clippy]
unwrap_used = "warn"
expect_used = "warn"
indexing_slicing = "warn"
panic_in_result_fn = "warn"
dbg_macro = "warn"
panic = "warn"
todo = "warn"
unnecessary_safety_comment = "warn"
unnecessary_safety_doc = "warn"
unimplemented = "warn"
use_debug = "warn"
cargo = "warn"
cast_lossless = "warn"
trailing_empty_array = "warn"
as_ptr_cast_mut = "warn"
lint_groups_priority = "allow"
[lints]
workspace = true