[package]
edition = "2021"
name = "lexd"
version = "0.8.2"
authors = ["lex contributors"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for the lex format"
readme = false
keywords = [
"cli",
"format",
"lex",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/lex-fmt/lex"
[package.metadata.dist]
display-name = "lexd"
[lib]
name = "lexd"
path = "src/lib.rs"
[[bin]]
name = "lexd"
path = "src/main.rs"
doctest = false
[[test]]
name = "element_at"
path = "tests/element_at.rs"
[[test]]
name = "format_config"
path = "tests/format_config.rs"
[[test]]
name = "markdown_import"
path = "tests/markdown_import.rs"
[[test]]
name = "nodemap"
path = "tests/nodemap.rs"
[[test]]
name = "pdf"
path = "tests/pdf.rs"
[[test]]
name = "stdin_input"
path = "tests/stdin_input.rs"
[[test]]
name = "theme_config"
path = "tests/theme_config.rs"
[dependencies.clap]
version = "4.4"
features = ["derive"]
[dependencies.clapfig]
version = "0.12"
[dependencies.lex-analysis]
version = "0.8.2"
[dependencies.lex-babel]
version = "0.8.2"
default-features = true
[dependencies.lex-config]
version = "0.8.2"
[dependencies.lex-core]
version = "0.8.2"
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.clap]
version = "4.4"
features = ["derive"]
[build-dependencies.clap_complete]
version = "4.4"