forked from DevinR528/cargo-sort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (41 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
[package]
name = "cargo-sort"
version = "1.0.9"
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 = "2018"
readme = "README.md"
exclude = ["examp", "fixtures"]
default-run = "cargo-sort"
# [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's dependencies
chrono = "0.4"
combine = "3.8"
linked-hash-map = "0.5"
[dev-dependencies]
pretty_assertions = "1.0.0"
serde_json = "1"
# 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"]