-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Cargo.toml
52 lines (44 loc) · 1.27 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
[package]
name = "cargo-sort"
version = "1.1.0"
authors = [
"Devin R <[email protected]>",
"Andronik Ordian <[email protected]>",
]
license = "MIT/Apache-2.0"
description = "Check if tables and items in a .toml file are lexically sorted"
repository = "https://github.com/DevinR528/cargo-sort"
keywords = ["cargo", "subcommand", "dependencies", "sort", "check"]
categories = ["development-tools::cargo-plugins", "development-tools"]
edition = "2021"
readme = "README.md"
exclude = ["examp", "fixtures"]
default-run = "cargo-sort"
rust-version = "1.70"
# [features]
# fuzz = ["afl"]
[dependencies]
# afl = { version = "0.10", optional = true }
clap = { version = "4.0.10", features = ["wrap_help", "cargo"] }
glob = "0.3"
termcolor = "1.1"
toml_edit = "0.22"
[dev-dependencies]
serde_json = "1"
similar-asserts = "1.5.0"
# The following is commented out for releases because of
# https://github.com/DevinR528/cargo-sort/issues/31
# see also https://github.com/rust-lang/cargo/issues/8703
# [[bin]]
# name = "cargo-sort"
# path = "src/main.rs"
# In order to run fuzz
# `cargo install afl`
# `cargo afl build --features=fuzz --bin fuzz`
# `cargo afl target/debug/fuzz`
# [[bin]]
# name = "fuzz"
# path = "src/fuzz.rs"
# required-features = ["fuzz"]
[profile.release]
lto = true