-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 646 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 646 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
[package]
name = "pdf-writer"
version = "0.14.0"
authors = ["Laurenz <laurmaedje@gmail.com>", "Martin Haug <mhaug@live.de>"]
edition = "2021"
description = "A step-by-step PDF writer."
repository = "https://github.com/typst/pdf-writer"
readme = "README.md"
license = "MIT OR Apache-2.0"
categories = ["encoding", "multimedia"]
keywords = ["pdf", "writer"]
[dependencies]
bitflags = "2"
itoa = "1"
memchr = "2"
ryu = "1"
[dev-dependencies]
iai = "0.1"
miniz_oxide = "0.8"
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
jpeg-decoder = "0.3.1"
jpeg-encoder = "0.6.0"
[[bench]]
name = "oneshot"
harness = false