-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (29 loc) · 847 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
[package]
description = "Small folder mirror tool for Windows using robocopy under the hood"
name = "simple-folder-syncer"
version = "0.1.2"
authors = ["Günther Grill <[email protected]>"]
license = "MIT"
repository = "https://github.com/guenhter/robocopy-folder-mirror"
categories = ["command-line-utilities"]
keywords = ["robocopy", "sync", "mirror"]
readme = "README.md"
edition = "2021"
rust-version = "1.79.0"
[dependencies]
anyhow = "1.0.86"
assertor = "0.0.2"
home = "0.5.9"
serde = { version = "1.0.203", features = ["derive"] }
serde_yaml = "0.9.34"
tempfile = "3.10.1"
walkdir = "2.5.0"
windows-sys = { version = "0.52.0", features = [
"Win32_System_Threading",
"Win32_Storage_FileSystem",
"Wdk_Foundation",
"Wdk_Storage_FileSystem",
"Win32_Foundation",
"Win32_System_IO",
"Win32_System_Kernel",
] }