-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (52 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
57 lines (52 loc) · 1.22 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "rbackup"
version = "0.7.0"
edition = "2024"
license = "MIT"
description = "Incremental, cross-platform and multithreaded backup tool written in Rust"
readme = "README.md"
homepage = "https://github.com/umpire274/rbackup"
repository = "https://github.com/umpire274/rbackup"
keywords = ["backup", "cli", "rsync", "robocopy", "multiplatform"]
categories = ["command-line-utilities", "filesystem"]
exclude = [
"target/*",
".idea/*",
".github/*",
".gitignore",
"config/*",
"*.sh",
"*.bat",
"/dist/*",
"/temp_build/*"
]
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
[build-dependencies]
winresource = "0.1.23"
[package.metadata.winresource]
Icon = "assets/rbackup.ico"
[package.metadata.bundle]
name = "rBackup"
identifier = "eu.umpire274.rbackup"
icon = ["assets/rbackup.png"]
[dependencies]
clap = { version = "4.5.50", features = ["derive"] }
crossterm = "0.29.0"
walkdir = "2.5.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
chrono = "0.4.42"
sys-locale = "0.3.2"
globset = "0.4.18"
serde_yaml = "0.9.33"
rayon = "1.11.0"
unicode-width = "0.2.2"
[dev-dependencies]
tempfile = "3.23.0"
filetime = "0.2.26"