-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
52 lines (44 loc) · 1.26 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 = "woodchipper"
authors = ["Tim Buckley <[email protected]>"]
edition = "2018"
license = "MIT"
categories = ["command-line-utilities", "development-tools", "development-tools::debugging"]
homepage = "https://github.com/HewlettPackard/woodchipper/"
repository = "https://github.com/HewlettPackard/woodchipper/"
description = "An interactive command-line log processor"
exclude = [".circleci/**/*", ".github/**/*"]
readme = "README.md"
# NOTE: do not change the version here, it will be patched by the deployment job
version = "0.1.0"
[badges]
circle-ci = { repository = "HewlettPackard/woodchipper", branch = "master" }
[dependencies]
serde = { version = "1.0.89", features = ["derive"] }
serde_json = "1.0.39"
serde_yaml = "0.8.8"
chrono = { version = "0.4.6", features = ["serde"] }
regex = "1.1.2"
crossterm = "0.8.2"
lazy_static = "1.3.0"
textwrap = "0.11.0"
structopt = "0.2.15"
simple-error = "0.2"
maplit = "1.0.1"
ansi_term = "0.11.0"
shellexpand = "1.0.0"
atty = "0.2.11"
reqwest = "0.9"
rand = "0.6"
subprocess = "0.1"
pest = "2.1"
pest_derive = "2.1"
[target.'cfg(not(target_env = "musl"))'.dependencies]
clipboard = "0.5.0"
[dev-dependencies]
spectral = "0.6.0"
[profile.release]
lto = true
[features]
default = ["wd-clipboard"]
wd-clipboard = []