[package]
edition = "2021"
rust-version = "1.85"
name = "zlayer-provisioner"
version = "0.14.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provider-agnostic cloud node provisioning trait + cloud-init reference impl"
readme = false
keywords = [
"zlayer",
"autoscaling",
"provisioning",
"cloud",
]
categories = ["virtualization"]
license = "Apache-2.0"
repository = "https://github.com/BlackLeafDigital/ZLayer"
[features]
cloud-init = [
"dep:tokio",
"dep:tracing",
]
default = ["cloud-init"]
[lib]
name = "zlayer_provisioner"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.serde]
version = "1"
features = [
"derive",
"derive",
]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.49"
features = [
"full",
"tracing",
]
optional = true
[dependencies.tracing]
version = "0.1"
optional = true
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.clippy.large_futures]
level = "allow"
priority = 1
[lints.rust]
dead_code = "warn"
unsafe_code = "warn"