[package]
edition = "2021"
rust-version = "1.85"
name = "zlayer-gcs"
version = "0.12.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Host-side bridge to the Hyper-V Guest Compute Service (GCS) running inside a UVM"
homepage = "https://zlayer.dev"
readme = false
license = "Apache-2.0"
repository = "https://github.com/BlackLeafDigital/ZLayer"
[features]
windows-debug = []
[lib]
name = "zlayer_gcs"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.19"
features = [
"v4",
"serde",
]
[target."cfg(not(windows))".dependencies.tokio]
version = "1.49"
features = [
"full",
"tracing",
"sync",
"macros",
"rt",
]
[target."cfg(windows)".dependencies.tokio]
version = "1.49"
features = [
"full",
"tracing",
"sync",
"macros",
"rt",
"net",
"io-util",
]
[target."cfg(windows)".dependencies.windows]
version = "0.62"
features = [
"Win32_Foundation",
"Win32_Networking_WinSock",
"Win32_System_IO",
]
[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"