18 lines
302 B
TOML
18 lines
302 B
TOML
[package]
|
|
name = "kiln-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
[[bin]]
|
|
name = "kiln"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
kiln-core = { version = "=0.0.1", path = "../kiln-core" }
|
|
|
|
[lints]
|
|
workspace = true
|