[package]
edition = "2021"
rust-version = "1.81"
name = "hl-engine"
version = "0.1.0"
build = "build.rs"
include = [
"Cargo.toml",
"README.md",
"build.rs",
"assets/**",
"examples/**",
"src/**",
"testdata/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust lifecycle API for the standalone HL Linux guest engine"
readme = "README.md"
keywords = [
"linux",
"emulation",
"jit",
"sandbox",
]
categories = [
"emulators",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/husklet/engine"
[lib]
name = "hl_engine"
path = "src/lib.rs"
[[example]]
name = "run"
path = "examples/run.rs"
[[test]]
name = "alpine"
path = "tests/alpine.rs"
[[test]]
name = "container"
path = "tests/container.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[[test]]
name = "traits"
path = "tests/traits.rs"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "deny"