-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
43 lines (39 loc) · 1010 Bytes
/
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
[package]
name = "heradoc"
version = "0.1.0"
authors = ["oberien <[email protected]>"]
edition = "2018"
[dependencies]
pulldown-cmark = "0.9.2"
str-concat = "0.2.0"
structopt = "0.3.26"
void = "1.0.2"
boolinator = "2.4"
tempdir = "0.3.7"
url = "2.3.1"
#reqwest = "0.9.2"
reqwest = { version = "0.11.14", features = ["blocking"] }
serde = { version = "1.0.89", features = ["derive"] }
toml = "0.7.1"
log = "0.4.5"
env_logger = "0.11.3"
mime = "0.3"
sha2 = "0.10.6"
isolang = "2.2.0"
strum = "0.24.1"
strum_macros = "0.24.3"
regex = "1.1.0"
lazy_static = "1.2.0"
quoted-string = "0.6.0"
diagnostic = { git = "https://github.com/oberien/diagnostic", rev = "eac2c7c1ced09c512c52a145bca55b28f42f7f3e" }
enum-kinds = "0.5.1"
lexical = "6.1.1"
svgbob = "0.6.7"
itertools = "0.10.5"
[target.'cfg(not(windows))'.dependencies]
librsvg = { git="https://gitlab.gnome.org/GNOME/librsvg", rev="2a06e240" }
cairo-rs = { version = "0.16.7", features = ["pdf"] }
[profile.release]
debug = true
[profile.bench]
debug = true