https 2.0.0

Host These Things Please - a basic http server for hosting a folder fast and simply (now git-only: cargo install --git https://github.com/thecoshman/http)
1
2
3
4
5
6
7
8
9
10
11
12
13
fn main() {
    eprintln!("");
    eprintln!("With http 2.0.0, http is no longer publishable on crates.io.");
    eprintln!("This is for a mundane reason of needing to vendor patched dependencies: https://github.com/thecoshman/http/pull/160#issuecomment-2143877822");
    eprintln!("");
    eprintln!("Please install http from git by running");
    eprintln!("  cargo install -f --git https://github.com/thecoshman/http");
    eprintln!("and then update as normal.");
    eprintln!("");
    eprintln!("You will continue to only receive normal, full, releases.");
    eprintln!("");
    std::process::exit(1);
}