forked from fschutt/printpdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1.16 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "printpdf"
version = "0.3.2"
authors = ["Felix Schütt <[email protected]>"]
repository = "https://github.com/fschutt/printpdf"
homepage = "https://github.com/fschutt/printpdf"
license = "MIT"
readme = "README.md"
description = "Rust library for writing PDF files"
[dependencies]
lopdf = { version = "0.24.0", default-features = false }
rusttype = { version = "0.8.2", default-features = false, features = ["std"] }
time = { version = "0.2.1", default-features = false, features = ["std"] }
log = { version = "0.4.8", optional = true }
[dependencies.image]
version = "0.23.0"
default-features = false
features = ["gif", "jpeg", "png", "pnm", "tiff", "bmp"] # missing:
optional = true
[features]
default = ["embedded_images"]
clippy = []
logging = ["log"]
embedded_images = ["image"]
ico = ["image/ico"]
tga = ["image/tga"]
hdr = ["image/hdr"]
jpeg_rayon = ["image/jpeg_rayon"]
dxt = ["image/dxt"]
dds = ["image/dds"]
webp = ["image/webp"]
less-optimization = []
[target.'cfg(all(target_arch="wasm32",target_os="unknown"))'.dependencies]
js-sys = "0.3.40"
[badges]
travis-ci = { repository = "fschutt/printpdf" }
appveyor = { repository = "fschutt/printpdf" }