chttp 0.4.3

The practical HTTP client that is fun to use.
Documentation
1
2
3
4
5
6
7
8
//! A simple example that prints the version of chttp and libcurl being used.
//!
//! This example is useful to run on various systems when troubleshooting
//! version-related issues.

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