forked from dyaso/pdf-student
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (25 loc) · 1.08 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
[package]
name = "pdf-student"
version = "0.1.0"
authors = ["dyaso <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#druid = {version = "0.7.0", features = ["im", "serde"]}
druid = { git = "https://github.com/linebender/druid.git" , features = ["im", "serde"]}
piet = {version = "*", features = ["serde"] }
# only let one instance of the program run at once -- if another starts, it sends a message to the preexisting one telling it what files to open, then quits
interprocess = "1.1.1"
#path-slash = "0.1.4"
open = "3" # for opening URL hyperlinks
directories = "3.0"
serde = {version = "*", features = ["derive"] }
serde_json = "*"
notify = "5.0.0-pre.16"
num-complex = "0.4"
md5 = "0.7.0" # used as a fallback for fingerprinting PDF files
mupdf = {version = "0.3", features=["sys-lib-freetype", "sys-lib-harfbuzz"]}
#[target.'cfg(not(unix))'.dependencies]
#mupdf = { path = "../mupdf-rs/" }
# [target.x86_64-unknown-linux-gnu]
# rustflags = ["-Clink-arg=-fuse-ld=lld"]