7 releases

0.1.6 May 9, 2023
0.1.5 Apr 17, 2023
0.1.4 Nov 17, 2022

#151 in HTTP client

Download history 10/week @ 2023-12-29 15/week @ 2024-01-05 3/week @ 2024-02-09 146/week @ 2024-02-16 6/week @ 2024-02-23 4/week @ 2024-03-01 2/week @ 2024-03-08 1/week @ 2024-03-15 55/week @ 2024-03-29

58 downloads per month
Used in lucidity

MIT/Apache

195KB
3.5K SLoC

nightfly

This project is an ongoing effort to port the reqwest library to the lunatic runtime

What works:

  • json, text and bytes for request and response bodies
  • decompression with brotli, gzip and deflate
  • redirect handling
  • cookies
  • chunked responses
  • handling of multiple open tcp streams per client
  • timeouts (needs some more testing)
  • Piping of responses (requires chunk-encoding)
  • pooling of connections (needs more usage of lib to find a good approach)
  • proxy handling
  • upgrade, socks5 support and websockets
  • custom dns resolver

MIT/Apache-2 licensed CI

An ergonomic, batteries-included HTTP Client for the lunatic runtime written in Rust.

  • Plain bodies, JSON, urlencoded, multipart (see examples)
  • Redirects with different policies
  • HTTPS via lunatic-native TLS (see examples)
  • Cookie Store
  • Customizable function-based redirect policy (IN PROGRESS)
  • HTTP Proxies (IN PROGRESS)

Example

This example uses Lunatic and enables some optional features, so your Cargo.toml could look like this:

[dependencies]
nightfly = { "0.1.0" }
lunatic = { "0.12.0" }

And then the code:

use std::collections::HashMap;

#[lunatic::main]
fn main() {
    let resp = nightfly::get("https://httpbin.org/ip")
        .unwrap()
        .json::<HashMap<String, String>>()
        .unwrap();
    println!("{:#?}", resp);
    Ok(())
}

Requirements

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~18MB
~563K SLoC