cargo metadata
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
17
README.md
17
README.md
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user