| Crates.io | styx-libcamera |
| lib.rs | styx-libcamera |
| version | 0.1.0 |
| created_at | 2026-01-19 11:58:59.033415+00 |
| updated_at | 2026-01-19 11:58:59.033415+00 |
| description | Libcamera probing backend for Styx capture descriptors. |
| homepage | https://github.com/sozo/Styx |
| repository | https://github.com/sozo/Styx |
| max_upload_size | |
| id | 2054425 |
| size | 36,938 |
Libcamera probing backend for Styx. This crate builds CaptureDescriptor entries
from libcamera devices and exposes their controls/format metadata to the Styx
capture API.
[dependencies]
styx-libcamera = "0.1.0"
probe: enable libcamera probing and descriptor construction.vendor_rpi: include Raspberry Pi vendor draft controls when probing.Enable the libcamera feature on the styx crate to access probing helpers:
use styx::prelude::*;
let devices = probe_all();
for device in devices {
println!("{} backends: {}", device.identity.name, device.backends.len());
}