forked from mullvad/windows-service-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
20 lines (18 loc) · 819 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "windows-service"
version = "0.2.0"
description = "A crate that provides facilities for management and implementation of windows services"
readme = "README.md"
authors = ["Mullvad VPN <[email protected]>", "Andrej Mihajlov <[email protected]>", "Linus Färnstrand <[email protected]>"]
keywords = ["windows", "service", "daemon"]
categories = ["api-bindings"]
repository = "https://github.com/mullvad/windows-service-rs"
license = "MIT/Apache-2.0"
edition = "2018"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
[target.'cfg(windows)'.dependencies]
bitflags = "1.2"
err-derive = "0.2.1"
winapi = { git = "https://github.com/mullvad/winapi-rs.git", rev = "4bcf5cab87124bbeef8c1a445137494d874f8082", features = ["dbt", "std", "winbase", "winerror", "winsvc"] }
widestring = "0.4.0"