-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (37 loc) · 1.21 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
38
39
[package]
name = "fs-librarian"
version = "0.3.3"
authors = ["Jason Rogena <null+fs-librarian@rogena.me>"]
edition = "2021"
rust-version = "1.63"
readme = "README.md"
license-file = "LICENSE"
documentation = "https://github.com/jasonrogena/librarian/blob/main/README.md"
description = "Librarian runs pre-configured commands against a group of files that match a set of filters"
homepage = "https://github.com/jasonrogena/librarian"
repository = "https://github.com/jasonrogena/librarian"
keywords = ["directory", "file", "file-manager", "organiser", "organizer"]
categories = ["command-line-utilities", "filesystem"]
exclude = [
"tests/files/*",
"tests/configs/bad-*",
".github/*",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = "1.0.197"
serde_derive = "1.0.188"
toml = "0.5.11"
regex = "1"
tree_magic = "0.2.3"
tera = "1"
clap = { version = "4.5", features = ["derive"] }
exitcode = "1.1.2"
ttl_cache = "0.5.1"
thiserror = "1.0.63"
bitflags = "2.6.0"
tokio-util = "0.7.10"
notify = { version = "6.1.1", default-features = false, features = ["macos_kqueue"] }
[target.'cfg(target_os = "linux")'.dependencies]
fanotify-rs = "0.3.1"
nix = "0.26.4"