-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (27 loc) · 923 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "curl-http-client"
version = "2.3.3"
edition = "2021"
authors = ["Lorenzo Leonardo <[email protected]>"]
license = "MIT"
description = "This is a wrapper for Easy2 from curl-rust crate for ergonomic use and can perform synchronously and asynchronously using async-curl crate that uses an actor model (Message passing) to achieve a non-blocking I/O."
repository = "https://github.com/LorenzoLeonardo/curl-http-client"
homepage = "https://github.com/LorenzoLeonardo/curl-http-client"
documentation = "https://docs.rs/curl-http-client"
readme = "README.md"
categories = ["web-programming::http-client"]
[dependencies]
async-curl = "0.4"
curl = "0.4"
derive-deref-rs = "0.1"
http = "1.1"
http-types = "2.12"
log = "0.4"
thiserror = "1.0"
tokio = { version = "1.37", features = ["rt"] }
url = "2.4"
[dev-dependencies]
futures = "0.3"
tempfile = "3.10"
test-case = "3.2"
wiremock = "=0.5.15"