-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 833 Bytes
/
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]
authors = ["Rikard Anglerud <[email protected]>"]
name = "hootie"
version = "0.5.0"
description = """
Terminal viewer of Alerta alerts.
"""
homepage = "https://github.com/anglerud/hootie"
repository = "https://github.com/anglerud/hootie"
readme = "README.md"
keywords = ["alerta", "alerting"]
categories = ["command-line-interface"]
license = "GPL-3.0"
edition = "2018"
exclude = [
"fake_alerta/*"
]
# Build script is required for `auditable-build`
build = "build.rs"
[badges]
travis-ci = { repository = "anglerud/hootie" }
[dependencies]
auditable = "0.1"
color-eyre = "0.6.1"
reqwest = { version = "0.11.10", features = ["blocking", "json"] }
serde = { version = "1.0.137", features = ["derive"] }
structopt = "0.3.26"
structopt-derive = "0.4.18"
termion = "1.5.6"
[build-dependencies]
auditable-build = "0.1"