-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 803 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 803 Bytes
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
[package]
name = "shawl"
version = "1.8.0"
authors = ["mtkennerly <mtkennerly@gmail.com>"]
edition = "2021"
description = "Windows service wrapper for arbitrary commands"
repository = "https://github.com/mtkennerly/shawl"
readme = "README.md"
license = "MIT"
default-run = "shawl"
[dependencies]
clap = { version = "4.5.20", features = ["derive", "wrap_help"] }
ctrlc = "3.4.5"
dunce = "1.0.5"
flexi_logger = "0.29.3"
log = "0.4.22"
windows = { version = "0.58.0", features = [
"Win32_System_Console",
"Win32_System_Threading",
"Win32_System_JobObjects",
"Win32_Foundation",
"Win32_Security",
] }
windows-service = "0.7.0"
[dev-dependencies]
regex = "1.11.0"
speculate = "0.1.2"
sysinfo = "0.31"
[build-dependencies]
winres = "0.1.12"
[profile.release]
lto = "thin"
strip = true