-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (36 loc) · 1000 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (36 loc) · 1000 Bytes
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 = "runtasktic"
version = "1.2.1"
authors = ["Jones Magloire @Joxit"]
description = "Command-line task management tool for execution of regular long sequential or parallel tasks."
edition = "2024"
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"] }
linked-hash-map = "0.5"
libc = "^0.2"
attohttpc = { version = "0.30", default-features = false, features = [
"compress",
"rustls",
"tls-rustls-native-roots",
] }
json = "0.12"
hostname = "0.4"
regex = "1.12"
chrono = "0.4"
cron = "0.16"
clap_complete = "4.6"
sha256 = "1.6"
anyhow = "1.0"
mail-send = "0.6"
tokio = "1.52"
serde = "1.0"
serde_yaml = "^0.9.34+deprecated"
serde_json = "1.0"
log = { version = "0.4.29", features = ["serde", "std"] }