-
-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathCargo.toml
More file actions
105 lines (102 loc) · 2.83 KB
/
Cargo.toml
File metadata and controls
105 lines (102 loc) · 2.83 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[workspace]
resolver = "2"
members = [
"src/bins",
"src/lib-rust",
"src/lib-nodejs/velopack_nodeffi",
"src/lib-cpp",
"src/lib-python",
"src/wix-dll",
]
exclude = [
"samples/RustIced",
]
[workspace.package]
version = "0.0.0-local"
authors = ["Velopack Ltd, Caelan Sayler <[email protected]>"]
homepage = "https://velopack.io"
repository = "https://github.com/velopack/velopack"
documentation = "https://docs.velopack.io"
description = "Installer and automatic update framework for cross-platform desktop applications"
keywords = ["update", "install", "velopack", "squirrel", "automatic-updates"]
categories = ["development-tools"]
license = "MIT"
edition = "2021"
rust-version = "1.75"
[workspace.dependencies]
velopack = { path = "src/lib-rust", features = ["file-logging", "public-utils"] }
velopack_bins = { path = "src/bins" }
log = "0.4"
log-derive = "0.4.1"
ureq = "3.2"
url = "2.5"
semver = "1.0"
xml = "1.2"
derivative = "2.2"
glob = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
zip = { version = "8.0", default-features = false, features = ["deflate"] }
thiserror = "2.0"
lazy_static = "1.5"
regex = "1.12"
normpath = "1.5"
bitflags = "2.11"
rand = "0.10"
zstd = "0.13"
anyhow = "1.0"
pretty-bytes-rust = "0.3"
simplelog = "0.12"
clap = "4.5"
chrono = "0.4"
wait-timeout = "0.2"
strum = { version = "0.28", features = ["derive"] }
simple-stopwatch = "0.1"
enum-flags = "0.4"
remove_dir_all = "1.0"
sha1 = "0.11"
sha2 = "0.11"
sha1_smol = "1.0"
time = "0.3"
os_info = "3.14"
neon = "1"
winres = "0.1"
tempfile = "3.25"
ntest = "0.9"
pretty_assertions = "1.4"
waitpid-any = "0.3"
dialog = "0.3"
libc = "0.2"
libloading = "0.9"
strsim = "0.11"
same-file = "1.0"
filelocksmith = "0.1"
image = { version = "0.25", default-features = false, features = ["gif", "jpeg", "png"] }
fs_extra = "1.3"
memmap2 = "0.9"
windows = "0.62"
webview2-com-sys = "0.39"
cbindgen = "0.29"
log-panics = "2.1.0"
core-foundation = "0.10"
core-foundation-sys = "0.8"
uuid = { version = "1.21", features = ["v4", "fast-rng", "macro-diagnostics"] }
walkdir = "2.5"
rayon = "1.11"
progress-streams = "1.1"
pyo3 = { version = "0.28", features = ["extension-module", "macros", "abi3", "abi3-py37", "anyhow"] }
pyo3-build-config = "0.28"
pyo3-log = "0.13"
winreg = "0.56"
serial_test = { version = "3", features = ["file_locks"] }
# default to small, optimized workspace release binaries
[profile.release]
opt-level = "z" # optimize for size
lto = true # link-time optimization
debug = false # disable debug info
debug-assertions = false # disable debug assertions
overflow-checks = false # disable overflow checks
panic = "abort" # abort on panic
incremental = false # disable incremental compilation
codegen-units = 1 # compile all code into a single unit
rpath = false # disable rpath