| Crates.io | hydrolix_helpers |
| lib.rs | hydrolix_helpers |
| version | 0.1.9 |
| created_at | 2025-01-07 15:42:45.030322+00 |
| updated_at | 2025-01-14 06:01:35.830745+00 |
| description | Helper libraries for interacting with Hydrolix. |
| homepage | https://github.com/aviani-sb/hydrolix_helpers |
| repository | https://github.com/aviani-sb/hydrolix_helpers |
| max_upload_size | |
| id | 1507340 |
| size | 36,533 |
Hydrolix Helpers is an unofficial Rust library designed to simplify interactions with Hydrolix, a high-performance analytics database. This crate provides utility functions and abstractions for common tasks such as querying, data ingestion, and managing configurations.
auth.rs
dump.rs
Add hydrolix_helpers to your Cargo.toml dependencies:
[dependencies]
tokio = { version = "1", features = ["full"] }
hydrolix_helpers = "0.1.X"
Store your cluster configurations in a Secrets.toml file. Here’s an example:
[[machines]]
base_url = "https://example-cluster-1.example.com"
username = "user1@example.com"
password = "your-password-here"
[[machines]]
base_url = "https://example-cluster-2.example.com"
username = "user2@example.com"
password = "your-password-here"
This file allows the library to load and manage credentials for each cluster.
I welcome contributions! Feel free to submit pull requests or report issues in the GitHub repository.
This project is licensed under the MIT License. See the LICENSE file for details.