-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 833 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
[package]
name = "wslpluginapi-sys"
version = "0.1.0-beta.1+2.1.3"
edition = "2021"
readme = "README.md"
authors = ["Mickaël Véril <[email protected]>"]
description = "Rust bindings for the WSL Plugin API"
license = "MIT"
repository = "https://github.com/mveril/wslpluginapi-sys"
keywords = ["wsl", "plugin", "windows", "linux", "ffi"]
categories = ["os::windows-apis", "external-ffi-bindings", "virtualization"]
[features]
hooks-field-names = ["dep:struct-field-names-as-array"]
[build-dependencies]
bindgen = "0.71.1"
semver = "^1.0"
[dependencies]
libc = "0.2"
struct-field-names-as-array = { version = "0.3", features = [
"derive",
], optional = true }
[dependencies.windows]
version = ">0.32"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_Diagnostics_Debug",
"Win32_Networking_WinSock",
]