-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (30 loc) · 1.03 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
[package]
name = "fast-local-sync"
version = "0.5.0"
edition = "2021"
authors = ["Remi Rampin <[email protected]"]
description = "Fast directory sync tool for the local filesystem"
readme = "README.md"
repository = "https://github.com/remram44/fast-local-sync"
keywords = ["sync", "copy", "filesystem", "rsync"]
license = "MIT"
[features]
default = ["acl", "attr", "unixdev", "metrics"]
acl = ["dep:exacl"]
attr = ["dep:xattr"]
unixdev = ["dep:nix"]
metrics = ["dep:tokio", "dep:warp"]
[dependencies]
crossbeam = "0.8"
filetime = "0.2"
pretty_env_logger = "0.5"
tracing = { version = "0.1", default-features = false, features = ["log", "std"] }
exacl = { version = "0.12", optional = true }
xattr = { version = "1.3", optional = true }
nix = { version = "0.29", optional = true, default-features = false, features = ["fs"] }
tokio = { version = "1.40", optional = true, default-features = false, features = ["net", "rt"] }
warp = { version = "0.3", optional = true, default-features = false }
[profile.release]
lto = true
opt-level = "s"
codegen-units = 1