-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (63 loc) · 1.66 KB
/
Cargo.toml
File metadata and controls
78 lines (63 loc) · 1.66 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "nano-get"
description = """
A tiny HTTP/1.1 GET and HEAD client with zero dependencies by default.
"""
version = "0.3.0"
authors = ["Rahul Thomas <rapidclock@users.noreply.github.com>"]
edition = "2021"
rust-version = "1.71"
license = "MIT"
repository = "https://github.com/rapidclock/nano-get"
documentation = "https://docs.rs/nano-get"
keywords = [
"http",
"https",
"https-client",
"http-get",
"http-client",
]
categories = ["network-programming", "web-programming"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
openssl = { version = "0.10.75", optional = true }
[features]
http = []
https = ["openssl"]
default = ["http"]
[[example]]
name = "simple-get"
path = "examples/simple-get/main.rs"
[[example]]
name = "get-bytes"
path = "examples/get-bytes/main.rs"
[[example]]
name = "head-request"
path = "examples/head-request/main.rs"
[[example]]
name = "request-builder"
path = "examples/request-builder/main.rs"
[[example]]
name = "protocol-specific-helpers"
path = "examples/protocol-specific-helpers/main.rs"
required-features = ["https"]
[[example]]
name = "session-reuse-and-pipelining"
path = "examples/session-reuse-and-pipelining/main.rs"
[[example]]
name = "memory-cache"
path = "examples/memory-cache/main.rs"
[[example]]
name = "basic-auth"
path = "examples/basic-auth/main.rs"
[[example]]
name = "custom-auth-handler"
path = "examples/custom-auth-handler/main.rs"
[[example]]
name = "proxy-and-proxy-auth"
path = "examples/proxy-and-proxy-auth/main.rs"
[[example]]
name = "advanced-client"
path = "examples/advanced-client/main.rs"
required-features = ["https"]