forked from SimonSapin/rust-pdf
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 679 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (24 loc) · 679 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-canvas"
version = "0.7.0"
authors = ["Simon Sapin <simon.sapin@exyr.org>",
"Rasmus Kaj <rasmus@krats.se>"]
license = "MIT"
description = """
Generate PDF files in pure Rust.
Currently, simple vector graphics and text set in the 14 built-in \
fonts are supported."""
categories = ["graphics"]
keywords = ["pdf", "graphics", "vector", "text"]
documentation = "https://docs.rs/pdf-canvas"
repository = "https://github.com/kaj/rust-pdf"
readme = "README.md"
edition = "2021"
build = "src/build_metrics.rs"
[build-dependencies]
lazy_static = "1.3"
[dependencies]
lazy_static = "1.3"
chrono = "0.4.19"
[badges.maintenance]
status = "passively-maintained"