-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
43 lines (38 loc) · 1.13 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
[package]
name = "lemmy-help"
version = "0.11.0"
description = "Emmylua parser and transformer"
authors = ["numToStr <[email protected]>"]
edition = "2021"
rust-version = "1.65.0"
homepage = "https://github.com/numToStr/lemmy-help"
repository = "https://github.com/numToStr/lemmy-help"
license = "MIT"
readme = "README.md"
keywords = ["parser", "lua", "emmylua", "vimdoc"]
categories = ["parsing", "command-line-utilities"]
exclude = [
".aur/**",
".cargo/**",
".github/**",
"tests/**",
".gitignore",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "lemmy-help"
required-features = ["cli"]
[dependencies]
chumsky = { version = "0.8.0", default-features = false }
textwrap = { version = "0.16.0", default-features = false, optional = true }
comfy-table = { version = "6.1.2", default-features = false, optional = true }
lexopt = { version = "0.2.1", default-features = false, optional = true }
[features]
vimdoc = ["dep:textwrap", "dep:comfy-table"]
cli = ["vimdoc", "dep:lexopt"]
[profile.release]
lto = true
strip = true
codegen-units = 1
opt-level = 3
panic = 'abort'