forked from theHamsta/faster-beamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 938 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
[package]
name = "faster-beamer"
version = "0.1.7"
authors = ["Stephan Seitz <[email protected]>"]
edition = "2018"
description = "An incremental compiler for LaTeX Beamer slides"
license="GPL-3.0-or-later"
repository = "https://github.com/theHamsta/faster-beamer"
keywords = ["latex"]
homepage = "https://github.com/theHamsta/faster-beamer"
categories = ["Latex"]
readme = "README.md"
[dependencies]
tree-sitter = "~0.20.9" # same version as required by tree-sitter-latex
tree-sitter-latex = { path = "tree-sitter-latex" }
dirs = "4.0.0"
lazy_static = "1.4.0"
clap = "2.34.0"
hotwatch = "0.4.6"
log = { version = "0.4.14", features = ["max_level_trace", "release_max_level_info"] }
pretty_env_logger = "0.4.0"
md5 = "0.7.0"
rayon = "1.5.1"
regex = "1.5.3"
symlink = "0.1.0"
indicatif = "0.17.0"
failure_derive = "0.1.8"
failure = "0.1.8"
tempfile = "3.3.0"
[build-dependencies]
cc = { version = "1.0.72", features = ["parallel"] }