-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 1.05 KB
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 = "parsync"
version = "0.2.0"
edition = "2021"
description = "Parallel rsync-like pull sync over SSH with resume"
license = "MIT"
repository = "https://github.com/AlpinDale/parsync"
homepage = "https://github.com/AlpinDale/parsync"
documentation = "https://docs.rs/parsync"
[dependencies]
anyhow = "1.0"
base64 = "0.22"
clap = { version = "4.5", features = ["derive"] }
ctrlc = "3.4"
filetime = "0.2"
glob = "0.3"
indicatif = "0.17"
md5 = "0.7"
rayon = "1.10"
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ssh2 = { version = "0.9", features = ["vendored-openssl"] }
thiserror = "2.0"
toml = "0.8"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
[target.'cfg(unix)'.dependencies]
nix = { version = "0.30", features = ["user", "fs", "signal", "process"] }
xattr = "1.4"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_Foundation", "Win32_System_Threading"] }
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
tempfile = "3.15"