-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (33 loc) · 908 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
[package]
name = "runtasktic"
version = "1.0.0"
authors = ["Jones Magloire @Joxit"]
description = "Command-line task management tool for execution of regular long sequential or parallel tasks."
edition = "2018"
license = "MIT"
repository = "https://github.com/Joxit/runtasktic"
homepage = "https://github.com/Joxit/runtasktic"
documentation = "https://docs.rs/runtasktic/"
readme = "README.md"
keywords = ["cli", "shell", "command", "task"]
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "^4.4", features = ["derive"] }
yaml-rust = "^0.4"
linked-hash-map = "^0.5"
libc = "^0.2"
attohttpc = { version = "^0.26", default-features = false, features = [
"compress",
"rustls",
"tls-rustls-native-roots",
] }
json = "^0.12"
hostname = "^0.3"
regex = "^1.3"
chrono = "^0.4"
cron = "0.12"
clap_complete = "^4.4"
sha256 = "^1.4"
anyhow = "^1.0"
mail-send = "^0.4.6"
tokio = "1.35.1"