cargo metadata

This commit is contained in:
Martin Algesten
2018-06-22 10:23:07 +02:00
parent 0a828bb4a5
commit 94bdfa100b
2 changed files with 15 additions and 8 deletions

View File

@@ -2,6 +2,12 @@
name = "ureq" name = "ureq"
version = "0.1.0" version = "0.1.0"
authors = ["Martin Algesten <martin@algesten.se>"] authors = ["Martin Algesten <martin@algesten.se>"]
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] [dependencies]
ascii = "0.9" ascii = "0.9"

View File

@@ -2,14 +2,6 @@
> Minimal request library in rust. > 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 ## Usage
```rust ```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 more async support is in rust core and won't drag those
dependencies, this library might change. 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) ## License (MIT)
Copyright (c) 2018 Martin Algesten Copyright (c) 2018 Martin Algesten