-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 1.13 KB
/
Copy pathCargo.toml
File metadata and controls
37 lines (34 loc) · 1.13 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
[package]
name = "apify-client"
version = "0.7.0"
authors = ["Apify Technologies <support@apify.com>"]
description = "Rust client for the Apify API (https://apify.com)."
license = "Apache-2.0"
edition = "2021"
repository = "https://github.com/apify/apify-client-rust"
homepage = "https://apify.com"
documentation = "https://docs.rs/apify-client"
readme = "README.md"
keywords = ["apify", "api", "client", "scraping", "automation"]
categories = ["api-bindings", "web-programming::http-client"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.12", default-features = false, features = ["json", "stream"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2.0"
async-trait = "0.1"
futures-util = "0.3"
tokio = { version = "1", features = ["time"] }
base64 = "0.22"
hmac = "0.12"
sha2 = "0.10"
brotli = "7"
flate2 = "1"
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time", "net", "io-util"] }
uuid = { version = "1", features = ["v4"] }
[features]
default = ["native-tls"]
native-tls = ["reqwest/native-tls"]
rustls = ["reqwest/rustls-tls"]