forked from rust-lang/rustfix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 666 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 666 Bytes
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
[package]
authors = [
"Pascal Hertleif <killercup@gmail.com>",
"Oliver Schneider <oli-obk@users.noreply.github.com>",
]
license = "Apache-2.0/MIT"
name = "rustfix"
description = "Automatically apply the suggestions made by rustc"
repository = "https://github.com/killercup/rustfix"
documentation = "https://docs.rs/rustfix"
readme = "README.md"
version = "0.2.0"
exclude = [
"etc/*",
"examples/*",
"tests/*",
]
[dependencies]
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
[dev-dependencies]
duct = "0.8.2"
env_logger = "0.5.0-rc.1"
log = "0.4.1"
pretty_assertions = "0.4.1"
tempdir = "0.3.5"
[workspace]
members = [
"cargo-fix",
]