-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (27 loc) · 825 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
[package]
name = "filewatch"
version = "0.1.1"
authors = ["Kyle Lucas <[email protected]>"]
edition = "2021"
description = "A tool for monitoring files to perform actions on"
repository = "https://github.com/kylegrantlucas/filewatch"
license = "MIT"
readme = "README.md"
keywords = ["file", "watch", "monitor", "action"]
categories = ["command-line-utilities"]
documentation = "https://docs.rs/filewatch"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
regex = "1"
walkdir = "2"
rayon = "1.5.3"
clap = { version = "4.0.15", features = ["derive"] }
lazy_static = "1.4.0"
log = "0.4.17"
simple_logger = "2.3.0"
indicatif = "0.17.1"
console = "0.15.2"
anyhow = "1.0.65"
serde_regex = "1.1.0"