-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
31 lines (26 loc) · 827 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
30
31
[package]
authors = ["[email protected]"]
name = "user_agent"
description = "Provides the concept of a user agent session, storing and retrieving cookies over multiple HTTP requests (a `Session`)."
version = "0.10.0"
edition = "2018"
repository = "https://github.com/pfernie/user_agent"
documentation = "https://docs.rs/user_agent"
license = "MIT/Apache-2.0"
readme = "README.md"
[dependencies]
cookie_store = "0.10.0"
url = "2.1.1"
cookie = "0.12.0"
reqwest = { version = "0.10.1", features = ["json", "blocking"] }
log = "0.4.8"
[dev-dependencies]
env_logger = "0.7.1"
pretty_assertions = "0.6.1"
time = "0.1.42"
serde_json = "1.0.48"
[features]
default = ["default-tls", "preserve_order"]
preserve_order = ["cookie_store/preserve_order"]
default-tls = ["reqwest/default-tls"]
rustls-tls = ["reqwest/rustls-tls"]