proptest-http 0.1.0

impl proptest::Arbitrary for http::{Request,Response,Uri}
Documentation
1
2
3
4
5
6
7
extern crate http;

fn main() {
    let arg = std::env::args().nth(1).unwrap();
    let url: http::uri::Uri = arg.parse().unwrap();
    println!("{:?}", url.into_parts());
}