forked from phayes/gotenberg_pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (30 loc) · 913 Bytes
/
Cargo.toml
File metadata and controls
38 lines (30 loc) · 913 Bytes
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
[package]
name = "gotenberg_pdf"
version = "0.5.2"
edition = "2021"
license = "MIT"
description = "A Rust client for the Gotenberg PDF API"
keywords = ["gotenberg", "pdf", "chromium", "libreoffice"]
[dependencies]
reqwest = { version = "0.12", features = [
"multipart",
], default-features = false }
serde = { version = "1.0", features = ["derive"] }
bytes = "1.0"
serde_json = "1.0"
zeroize = { version = "1.8", optional = true }
futures = { version = "0.3", optional = true }
[features]
default = ["zeroize"]
rustls-tls = ["reqwest/rustls-tls"]
native-tls = ["reqwest/native-tls"]
stream = ["reqwest/stream", "futures"]
http2 = ["reqwest/http2"]
blocking = ["reqwest/blocking"]
[dev-dependencies]
wasm-bindgen-test = "0.3"
tiny_http = "0.12.0"
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tokio = { version = "1", features = ["full"] }
[package.metadata.docs.rs]
all-features = true