[package]
edition = "2021"
rust-version = "1.85"
name = "zlayer-hcs"
version = "0.11.21"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust wrapper for the Windows Host Compute Service (HCS)"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/BlackLeafDigital/ZLayer"
[lib]
name = "zlayer_hcs"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[target."cfg(windows)".dependencies.futures-core]
version = "0.3"
[target."cfg(windows)".dependencies.tokio]
version = "1.49"
features = [
"full",
"tracing",
"sync",
"macros",
"rt",
]
[target."cfg(windows)".dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[target."cfg(windows)".dependencies.windows]
version = "0.62"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_HostComputeSystem",
"Win32_System_RemoteDesktop",
"Win32_System_Threading",
]
[target."cfg(windows)".dev-dependencies.tokio]
version = "1.49"
features = [
"full",
"tracing",
"sync",
"macros",
"rt",
"rt-multi-thread",
"time",
"test-util",
]
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
dead_code = "warn"
unsafe_code = "warn"