[package]
edition = "2024"
name = "banc-host"
version = "0.0.4"
authors = ["Louis Thiery <thiery.louis@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Host-side fixtures and test runner for the banc HIL test framework: rig topology, hardware serialization, self-skip, evidence"
readme = false
keywords = [
"hil",
"testing",
"embedded",
"hardware",
]
categories = [
"development-tools::testing",
"embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lthiery/banc"
resolver = "2"
[lib]
name = "banc_host"
path = "src/lib.rs"
[[test]]
name = "net"
path = "tests/net.rs"
[[test]]
name = "paired"
path = "tests/paired.rs"
harness = false
[[test]]
name = "smoke"
path = "tests/smoke.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.banc-icd]
version = "0.0.1"
[dependencies.fs4]
version = "0.13"
features = ["sync"]
[dependencies.libtest-mimic]
version = "0.8.2"
[dependencies.postcard]
version = "1"
features = ["use-std"]
[dependencies.postcard-rpc]
version = "0.12"
features = [
"use-std",
"raw-nusb",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"sync",
"time",
"process",
"macros",
"fs",
"io-util",
"net",
]
[dependencies.toml]
version = "0.9"