From 94bdfa100b68e2c4ca32fed73917c65a528d6c9d Mon Sep 17 00:00:00 2001 From: Martin Algesten Date: Fri, 22 Jun 2018 10:23:07 +0200 Subject: [PATCH] cargo metadata --- Cargo.toml | 6 ++++++ README.md | 17 +++++++++-------- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 848b90b..afa3484 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,12 @@ name = "ureq" version = "0.1.0" authors = ["Martin Algesten "] +description = "Minimal HTTP request library" +license = "MIT/Apache-2.0" +repository = "https://github.com/algesten/ureq" +readme = "README.md" +keywords = ["web", "request", "http", "rest", "client"] +categories = ["web-programming::http-client"] [dependencies] ascii = "0.9" diff --git a/README.md b/README.md index d2c9fe9..49c4188 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,6 @@ > Minimal request library in rust. -# UNDER CONSTRUCTION - -- [ ] Forms with application/x-www-form-urlencoded -- [ ] multipart/form-data -- [ ] Connection reuse/keep-alive with pool -- [ ] Expect 100-continue -- [ ] Use `rustls` when ring v0.13 is released. - ## Usage ```rust @@ -46,6 +38,15 @@ currently pulls in a heavy dependency tree (tokio etc). Once more async support is in rust core and won't drag those dependencies, this library might change. + +## TODO + +- [ ] Forms with application/x-www-form-urlencoded +- [ ] multipart/form-data +- [ ] Connection reuse/keep-alive with pool +- [ ] Expect 100-continue +- [ ] Use `rustls` when ring v0.13 is released. + ## License (MIT) Copyright (c) 2018 Martin Algesten