[package]
edition = "2024"
rust-version = "1.91"
name = "xvc-protocol"
version = "0.2.0"
authors = ["Lukas Scheller"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of the Xilinx Virtual Cable (XVC) 1.0 protocol for JTAG communication with FPGA devices over network connections"
readme = "README.md"
categories = ["api-bindings"]
license = "MIT"
repository = "https://github.com/Schottkyc137/xvc-rs"
[features]
tokio = [
"dep:tokio-util",
"dep:bytes",
]
[lib]
name = "xvc_protocol"
path = "src/lib.rs"
[[bench]]
name = "message_encoding"
path = "benches/message_encoding.rs"
harness = false
[dependencies.bytes]
version = "1"
optional = true
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
optional = true
[dev-dependencies.criterion]
version = "0.7.0"