blob: 183a6808f792ff83c260f05b48f76e8a2dc761e3 (
plain)
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
|
TODO
2019.11.01
v Remove `unwrap`s, return a `Result`
v Set up errors
v Add a test
v Make a test PDF
v Take the PDF path as an argument
v Documentation
- Figure out what's wrong with parsing certain PDFs
523170630fd8e9ba695f4167d132a8812d814a1e
$ ./target/debug/pdf-urls ./Resources/PDF32000_2008.pdf
error: utf8 error: invalid utf-8 sequence of 1 bytes from index 0
Changed URL conversion to `String::from_utf8_lossy(s)`
$ time ./target/debug/pdf-urls ./Resources/PDF32000_2008.pdf
error: pdf error: An object does not have the expected type
real 2m19.471s
user 8m44.137s
sys 0m3.798s
2019.11.02:
v README
v Man page
v Version CLI option
|