-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (31 loc) · 1018 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 = "rsincron"
authors = ["Mattia Repetto <mfwre-gh@proton.me>"]
version = "0.0.10"
edition = "2021"
repository = "https://github.com/mfwre/rsincron"
homepage = "https://github.com/mfwre/rsincron"
documentation = "https://github.com/mfwre/rsincron"
license = "GPL-3.0-or-later"
description = "Rust rewrite of the incredibly useful but abandoned incron software"
readme = "README.md"
keywords = ["incron"]
[lib]
name = "rsincronlib"
[dependencies]
bincode = "1.3.3"
clap = { version = "4.5.1", features = ["derive", "string"] }
figment = { version = "0.10.14", features = ["toml"] }
futures = "0.3.30"
inotify = "0.10.2"
lazy_static = "1.4.0"
serde = { version = "1.0.197", features = ["derive"] }
shell-words = "1.1.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
uuid = { version = "1.7.0", features = ["v4"] }
winnow = "0.6.3"
xdg = "2.5.2"
[dependencies.tokio]
version = "1.36.0"
features = ["rt", "rt-multi-thread", "macros", "time", "process", "sync"]