-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
37 lines (33 loc) · 1.02 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
[package]
name = "task-mon"
version = "0.3.0"
authors = ["Michael Diamond <[email protected]>"]
description = "CLI to execute commands and log results to healthchecks.io"
repository = "http://github.com/dimo414/task-mon"
license = "MIT"
keywords = ["cron", "healthcheck", "healthchecks", "heartbeat", "monitoring"]
categories = ["command-line-utilities", "development-tools::debugging"]
edition = "2018"
include = [
"**/*.rs",
"Cargo.*",
"README.md",
"LICENSE",
]
[features]
# If compiling on a system without OpenSSL installed, or cross-compiling for a different
# architecture, enable this feature to compile OpenSSL as part of the build.
# See https://docs.rs/openssl/#vendored
static_ssl = ['openssl/vendored']
[dependencies]
clap = { version = "~3.0", default_features = false, features = ["std", "derive", "env", "cargo"] }
clap_derive = "~3.0"
hostname = "0.3"
subprocess = "0.2"
ureq = "2.0"
[dependencies.openssl]
optional = true
version = '0.10'
[dev-dependencies]
mockito = "0.29.0"
parameterized_test = "0.2"