-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathCargo.toml
56 lines (50 loc) · 1.26 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "compactor"
version = "0.10.1"
authors = ["Thomas Hurst <[email protected]>"]
homepage = "https://github.com/Freaky/Compactor"
description = "An interface to Windows 10 filesystem compression"
edition = "2018"
license = "MIT"
[dependencies]
backtrace = "0.3.32"
compresstimator = { git = "https://github.com/Freaky/compresstimator.git", rev = "26ddd3f499bc46f2c8b3ce814e9723ed41b47919" }
crossbeam-channel = "0.5"
ctrlc = "3.1"
directories = "2.0.1"
dirs-sys = "0.3.3"
filesize = "0.2"
fs2 = "0.4.3"
glob = "0.3"
globset = "0.4"
hashfilter = { path = "hashfilter" }
humansize = "1.1.0"
lazy_static = "1.4.0"
open = "1.4"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
siphasher = "0.3.0"
walkdir = "2.3"
web-view = { git = "https://github.com/Freaky/web-view", branch = "blocking-step" }
winapi = { version = "0.3.7", features = [ "combaseapi", "ioapiset", "knownfolders", "shellscalingapi", "shlobj", "shtypes", "winbase", "winerror", "winioctl", "winver"] }
filetime = "0.2.8"
tinyfiledialogs = "3.3.10"
wfd = "0.1.6"
[[bin]]
name = "Compactor"
path = "src/main.rs"
[build-dependencies]
vergen = "3"
winres = "0.1"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
debug = false
[dev-dependencies]
tempdir = "0.3.7"
[workspace]
members = [
"hashfilter"
]