-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (45 loc) · 1.44 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
authors = ["Juliette Cordor"]
categories = ["development-tools", "os", "os::unix-apis", "os::windows-apis"]
description = "A collection of small things that don't deserve their own crate"
documentation = "https://docs.rs/quork"
edition = "2021"
homepage = "https://github.com/jewlexx/quork.git"
keywords = ["admin", "linux", "network", "sys", "windows"]
license = "MIT OR Apache-2.0"
name = "quork"
repository = "https://github.com/jewlexx/quork.git"
rust-version = "1.70.0"
version = "0.8.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["quork-proc"]
[dependencies]
cfg-if = "1.0"
lock_api = { version = "0.4", optional = true }
parking_lot = { version = "0.12", optional = true }
quork-proc = { version = "0.4", path = "quork-proc", optional = true }
spin = { version = "0.9", optional = true }
thiserror = { version = "2.0" }
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58", features = [
"Win32_Foundation",
"Win32_Networking_NetworkListManager",
"Win32_Security",
"Win32_Security",
"Win32_System_Com",
"Win32_System_Threading",
] }
[target.'cfg(unix)'.dependencies]
nix = { version = "0.29", features = ["user"] }
[features]
all = ["macros", "network", "root", "std", "traits", "sized_string"]
default = ["all"]
macros = ["quork-proc"]
network = []
root = ["std"]
sized_string = []
std = []
traits = []
[dev-dependencies]
is-root = "0.1"