-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
34 lines (30 loc) · 809 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
28
29
30
31
32
33
34
[package]
name = "win32job"
version = "2.0.0"
authors = ["Ohad Ravid <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/crate/win32job"
homepage = "https://github.com/ohadravid/win32job-rs"
repository = "https://github.com/ohadravid/win32job-rs"
description = """
A safe API for Windows' job objects.
"""
categories = ["api-bindings", "os::windows-apis"]
keywords = ["job", "job-object", "win32"]
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
[dependencies]
thiserror = "1.0"
[dependencies.windows]
version = "0.52"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_JobObjects",
"Win32_System_Threading",
"Win32_System_ProcessStatus",
]
[dev-dependencies]
rusty-fork = "0.3"