[package]
edition = "2021"
rust-version = "1.75"
name = "bsdkrun-sdk"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust SDK for bsdkrun — a Firecracker-style microVM launcher for BSD, Linux, and unikernel guests"
readme = "README.md"
keywords = [
"microvm",
"sandbox",
"libkrun",
"unikernel",
"vm",
]
categories = [
"virtualization",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/tsirysndr/bsdkrun"
[lib]
name = "bsdkrun_sdk"
path = "src/lib.rs"
[[test]]
name = "client"
path = "tests/client.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[[test]]
name = "local_sandbox"
path = "tests/local_sandbox.rs"
[[test]]
name = "shell_and_logs"
path = "tests/shell_and_logs.rs"
[[test]]
name = "transport_ws"
path = "tests/transport_ws.rs"
[dependencies.base64]
version = "0.22"
[dependencies.serde]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tungstenite]
version = "0.24"
features = ["rustls-tls-native-roots"]
[dependencies.ureq]
version = "2"