-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 742 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 742 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
[package]
name = "pdf_structure_viewer"
description = "Inspect how the PDF's structure looks."
version = "0.1.0"
authors = ["Ralph Bisschops <ralph.bisschops.dev@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["pdf", "structure", "viewer", "adobe"]
categories = ["command-line-utilities", "encoding", "visualization"]
repository = "https://github.com/ralpha/pdf_structure_viewer"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.14"
structopt = "0.3.25"
yansi = "0.5.0"
lazy_static = "1.4.0"
lopdf = { version = "0.27.0", features = [
"chrono_time",
"nom_parser",
], default-features = false }
indexmap = "1.8.0"