-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
35 lines (31 loc) · 1.13 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
[package]
name = "ceviche"
version = "0.6.1"
edition = "2021"
license = "MIT/Apache-2.0"
homepage = "https://github.com/devolutions/ceviche-rs"
repository = "https://github.com/devolutions/ceviche-rs"
authors = ["Marc-André Moreau <[email protected]>", "Sébastien Duquette <[email protected]>", "Richard Markiewicz <[email protected]>"]
keywords = ["daemon", "service"]
description = "Rust daemon/service wrapper"
exclude = [
".*",
"appveyor.yml"
]
[dependencies]
cfg-if = "1"
ctrlc = { version = "3.1", features = ["termination"] }
log = "0.4"
[target.'cfg(windows)'.dependencies]
widestring = "0.4.3"
windows-sys = { version = "0.52", features = ["Win32_Foundation", "Win32_System_RemoteDesktop", "Win32_System_LibraryLoader", "Win32_UI_WindowsAndMessaging",
"Win32_Security", "Win32_System_Services", "Win32_System_Diagnostics_Debug"]}
[target.'cfg(target_os = "linux")'.dependencies]
systemd-rs = { version="^0.1.2", optional = true }
[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.9"
core-foundation-sys = "0.8"
system-configuration-sys = "0.5"
timer = "0.2"
chrono = "0.4"
libc = "0.2"