| Crates.io | zocalo |
| lib.rs | zocalo |
| version | 0.1.0 |
| created_at | 2026-01-16 11:44:00.393001+00 |
| updated_at | 2026-01-16 11:44:00.393001+00 |
| description | Tools for interfacing with python-Zocalo distributed systems |
| homepage | |
| repository | https://github.com/ndevenish/zocalo-rs |
| max_upload_size | |
| id | 2048474 |
| size | 67,952 |
Support infrastructure for interacting with Zocalo systems from Rust.
Currently supports:
Configuration object, or constructing directly with environment
defaults via the configuration::ExtractConfig trait e.g.Usage example:
use crate::zocalo::ExtractConfig;
let rmq = zocalo::RabbitMQConfig::from_default_env().unwrap().unwrap();
println!("RabbitMQ hosts: {}", rmq.host.join(", "));