-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (34 loc) · 1.2 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
[package]
name = "cargo-pretty"
version = "0.3.2"
authors = ["kgv <kgv@users.noreply.github.com>"]
edition = '2018'
description = "A tool for formatting manifest according to style guidelines"
readme = "README.md"
homepage = "https://crates.io/crates/cargo-pretty"
repository = "https://github.com/kgv/cargo-pretty"
license = "MIT OR Apache-2.0"
keywords = ["binary", "cargo", "cli", "format", "toml", "utility"]
categories = ["command-line-utilities", "config", "development-tools::cargo-plugins"]
[dependencies]
anyhow = "1.0.32"
clap = { version = "3.0.0-beta.1", features = ["derive"] }
derivative = "2.1.1"
env_logger = "0.7.1"
erased-serde = "0.3.12"
indexmap = { version = "1.6.0", features = ["serde"] }
itertools = "0.9.0"
lazy_static = "1.4.0"
log = "0.4.11"
optional-index = { version = "0.1.0", git = "https://github.com/kgv/optional-index" }
ron = "0.6.2"
serde = { version = "1.0.116", features = ["derive"] }
serde-diff = "0.3.1"
serde_json = "1.0.58"
toml = { version = "0.5.6", features = ["preserve_order"] }
toml-lalrpop = { version = "0.1.0", git = "https://github.com/kgv/toml-lalrpop" }
[features]
default = []
drain-filter = ["nightly", "toml-lalrpop/drain-filter"]
nightly = ["unstable"]
unstable = []