-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
40 lines (36 loc) · 1.07 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
[package]
name = "indentex"
version = "0.5.0"
authors = ["Mikhail Pak <code@mp4096.com>", "Hans Kirchner <h.kirchner@tum.de>"]
license = "MIT"
description = "Transpiler for an indentation-based superset of LaTeX"
readme = "README.md"
keywords = ["latex"]
repository = "https://github.com/mp4096/indentex"
publish = false
edition = "2018"
[workspace]
[dependencies]
clap = "^2.33.3"
env_logger = "^0.8.2"
globset = "^0.4.6"
ignore = "^0.4.17"
indentexlib = { path = "indentexlib" }
log = { version = "^0.4.14", features = ["release_max_level_debug"] }
rayon = "^1.5.0"
[profile.release]
opt-level = 3
lto = true
debug-assertions = false
[package.metadata.deb]
maintainer = "Mikhail Pak <code@mp4096.com>"
copyright = "2016-2019, Mikhail Pak <code@mp4096.com>, Hans Kirchner <h.kirchner@tum.de>"
license-file = ["LICENSE.md", "6"]
extended-description = "A transpiler for an indentation-based superset of LaTeX."
depends = "$auto"
section = "tex"
priority = "optional"
assets = [
["target/release/indentex", "usr/bin/", "755"],
["README.md", "usr/share/doc/indentex/README", "644"],
]