-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
25 lines (22 loc) · 852 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
[package]
name = "hcctl"
version = "2.0.9"
authors = ["Harsh Shandilya <[email protected]>", "Iain Earl <[email protected]>"]
edition = "2021"
description = "Command-line tool for interacting with a https://healthchecks.io account"
repository = "https://github.com/msfjarvis/healthchecks-rs"
homepage = "https://github.com/msfjarvis/healthchecks-rs"
license = "MIT/Apache-2.0"
keywords = ["healthchecks"]
readme = "README.md"
include = ["src/**/*", "../LICENSE-*", "README.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap.workspace = true
color-eyre.workspace = true
comfy-table = "7.1.1"
healthchecks.workspace = true
time = { version = "0.3.36", features = ["parsing"] }
uuid.workspace = true
[dev-dependencies]
time = { version = "0.3.36", features = ["parsing", "macros"] }