forked from crlf0710/tectonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
71 lines (63 loc) · 2.05 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Cargo.toml -- Cargo definition file for Tectonic.
# Copyright 2016-2019 the Tectonic Project
# Licensed under the MIT License.
[package]
name = "tectonic"
version = "0.1.12-dev"
authors = ["Peter Williams <[email protected]>"]
description = """
A modernized, complete, embeddable TeX/LaTeX engine. Tectonic is forked from the XeTeX
extension to the classic “Web2C” implementation of TeX and uses the TeXLive distribution
of support files.
"""
homepage = "https://tectonic-typesetting.github.io/"
documentation = "https://docs.rs/tectonic"
repository = "https://github.com/tectonic-typesetting/tectonic/"
readme = "README.md"
keywords = ["tex", "latex", "typesetting", "font"]
categories = ["command-line-interface", "parser-implementations", "rendering", "science", "text-processing"]
license = "MIT"
edition = "2018"
[badges]
travis-ci = { repository = "tectonic-typesetting/tectonic" }
codecov = { repository = "tectonic-typesetting/tectonic", service = "github" }
[workspace]
members = ["engine", "dpx", "bridge", "xdv"]
[lib]
name = "tectonic"
crate-type = ["rlib"]
[dependencies]
app_dirs2 = "^2"
structopt = "0.3"
error-chain = "^0.12"
flate2 = { version = "^1.0", default-features = false, features = ["zlib"] }
fs2 = "^0.4"
headers = "^0.2"
lazy_static = "^1.4"
libc = "^0.2"
tempfile = "^3.1"
md-5 = "^0.8"
reqwest = "^0.9"
sha2 = "^0.8"
serde = { version = "^1.0", features = ["derive"], optional = true }
tectonic_engine = { path = "engine", version = "0.0.1-dev" }
tectonic_xdv = { path = "xdv", version = "0.1.9-dev" }
termcolor = "^1.0"
toml = "^0.5"
zip = { version = "^0.5", default-features = false, features = ["deflate"] }
#env_logger = "0.6.2"
[features]
default = ["serialization"]
# Note: we used to have this to couple "serde" and "serde-derive", but we've
# adopted the newer scheme to avoid having to depend on both -- should maybe
# just get rid of this feature:
serialization = ["serde"]
# freetype-sys = "^0.4"
# harfbuzz-sys = "^0.1"
# libz-sys = "^1.0"
[dev-dependencies]
futures = "0.1"
headers = "0.2"
hyper = "0.12"
tempfile = "^3.1"
tokio = "0.1.22"