[package]
edition = "2021"
rust-version = "1.70"
name = "slash-lib"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Executor types and high-level API for the slash-command language"
readme = "README.md"
keywords = [
"parser",
"slash",
"command",
"dsl",
"executor",
]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/89jobrien/slash"
[features]
obfsck = ["dep:obfsck"]
[lib]
name = "slash_lib"
path = "src/lib.rs"
[[test]]
name = "executor_semantics"
path = "tests/executor_semantics.rs"
[dependencies.dotenvy]
version = "0.15"
[dependencies.obfsck]
version = "0.1"
optional = true
[dependencies.slash-lang]
version = "0.1.0"