[package]
edition = "2024"
rust-version = "1.88"
name = "viva-genapi-xml"
version = "0.2.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GenICam XML retrieval and minimal parsing (schema, features)"
homepage = "https://github.com/VitalyVorobyev/viva-genicam"
readme = "README.md"
keywords = [
"genicam",
"genapi",
"xml",
"vision",
]
categories = [
"hardware-support",
"network-programming",
"science::robotics",
]
license = "MIT"
repository = "https://github.com/VitalyVorobyev/viva-genicam"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["fetch"]
fetch = []
[lib]
name = "viva_genapi_xml"
path = "src/lib.rs"
[dependencies.quick-xml]
version = "0.31"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "1"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"net",
"time",
"sync",
"macros",
"rt",
]