-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
47 lines (41 loc) · 1.14 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
43
44
45
46
47
[package]
name = "pdf_parser"
version = "0.1.0"
authors = ["Connor Skees <[email protected]>"]
edition = "2021"
documentation = "https://docs.rs/pdf_parser"
readme = "README.md"
repository = "https://github.com/connorskees/pdf/"
license = "MIT"
description = "PDF parser"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "pdf"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "pdf"
path = "src/main.rs"
[dependencies]
anyhow = { version = "1.0.71", features = ["backtrace"] }
bitvec = { git = "https://github.com/connorskees/bitvec", branch = "feat/more-track-caller", default-features = false, features = [
"std",
] }
aes = "0.8.2"
cbc = "0.1.2"
md5 = "0.7.0"
fixed = "1.23.1"
flate2 = "1.0.20"
jpeg-decoder = { version = "0.1.22", default-features = false }
minifb = { version = "0.19.3", optional = true }
once_cell = "1.17.2"
pdf_macro = { path = "pdf_macro" }
png = "0.17.8"
winit = { version = "0.29", features = ["rwh_05"] }
wgpu = "0.19"
pollster = "0.3"
bytemuck = { version = "1.12", features = ["derive"] }
env_logger = "0.11.3"
log = "0.4.21"
[features]
window = ["minifb"]