-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (37 loc) · 1.03 KB
/
Copy pathCargo.toml
File metadata and controls
46 lines (37 loc) · 1.03 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "echo_http"
version = "0.1.2"
edition = "2021"
authors = ["Giuseppe Gelardi <giuseppegelardi@icloud.com>"]
license = "MIT"
description = "Axios like http client for the typescipt devs that just can't let go"
homepage = "https://github.com/giuseppe-g-gelardi/echo_http"
repository = "https://github.com/giuseppe-g-gelardi/echo_http"
documentation = "https://docs.rs/echo_http"
readme = "README.md"
keywords = ["http", "client", "axios", "reqwest", "serde"]
categories = ["network-programming", "web-programming"]
[dependencies]
once_cell = "1.20.2"
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.135"
thiserror = "2.0.11"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
[lib]
path = "src/lib.rs"
[workspace]
members = ["examples/*"]
[[test]]
name = "headers"
path = "tests/headers.rs"
[[test]]
name = "http"
path = "tests/http.rs"
[[test]]
name = "request"
path = "tests/request.rs"
[[test]]
name = "response"
path = "tests/response.rs"