ratmom 0.1.0

Sensible, async, curl-based HTTP client
1
2
3
4
5
6
7
8
//! A simple example that prints the version of ratmom and libcurl being used.
//!
//! This example is useful to run on various systems when troubleshooting
//! version-related issues.

fn main() {
    println!("version: {}", ratmom::version());
}