forked from mitsuhiko/self-replace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (25 loc) · 835 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
[package]
name = "self-replace"
version = "1.3.5"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>"]
edition = "2018"
license = "Apache-2.0"
description = "Utility crate that allows executables to replace or uninstall themselves"
homepage = "https://github.com/mitsuhiko/self-replace"
repository = "https://github.com/mitsuhiko/self-replace"
keywords = ["self-update", "self-replace", "self-uninstall", "replace", "uninstall"]
rust-version = "1.48"
exclude = ["examples", "demo*"]
[dependencies]
tempfile = "3.5.0"
[target."cfg(windows)".dependencies]
fastrand = "1.9.0"
windows-sys = { version = "0.48.0", features = [
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_System_Environment",
"Win32_System_LibraryLoader",
"Win32_System_Memory",
"Win32_System_Threading",
"Win32_UI_Shell",
] }