jarvy 0.2.2

Jarvy is a fast, cross-platform CLI that installs and manages developer tools across macOS and Linux.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Shared HTTP / network primitives. Currently a single-module wrapper
//! around `ureq::Agent` with timeouts, but the right home for any future
//! cross-cutting network helpers (URL allowlist, redirect callback, etc.).

pub mod agent;
pub mod url_encode;

#[allow(unused_imports)]
pub use agent::user_agent;
pub use agent::{USER_AGENT, agent};