-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (40 loc) · 1.17 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
[package]
name = "vimcats"
version = "1.1.0"
description = "LuaCATS parser and vimdoc transformer"
authors = ["mrcjkb <marc@jakobi.dev>"]
edition = "2021"
homepage = "https://github.com/mrcjkb/vimcats"
repository = "https://github.com/mrcjkb/vimcats"
license = "GPL-2.0+"
readme = "README.md"
keywords = ["parser", "lua", "LuaCATS", "vimdoc", "neovim"]
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 = "vimcats"
required-features = ["cli"]
[dependencies]
chumsky = { version = "0.9.3", default-features = false }
textwrap = { version = "0.16.0", default-features = false, optional = true }
comfy-table = { version = "7.1.1", default-features = false, optional = true }
lexopt = { version = "0.3.0", default-features = false, optional = true }
itertools = "0.13.0"
[dev-dependencies]
goldenfile = "1.7.1"
[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'