[package]
edition = "2024"
name = "oxdock-cli"
version = "0.6.0-alpha"
authors = ["Jeremy Harris <jeremy.harris@zenosmosis.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tooling for executing OxDock's Docker-inspired language on native platforms."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/jzombie/oxdock-rs"
resolver = "2"
[package.metadata.cargo-udeps.ignore]
normal = ["tracing"]
development = []
build = []
[lib]
name = "oxdock_cli"
path = "src/lib.rs"
[[bin]]
name = "oxdock"
path = "src/main.rs"
[[example]]
name = "tree_shell"
path = "examples/tree_shell.rs"
[[test]]
name = "cli_bin"
path = "tests/cli_bin.rs"
[[test]]
name = "parse"
path = "tests/parse.rs"
[[test]]
name = "script"
path = "tests/script.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.indoc]
version = "2.0.7"
[dependencies.oxdock-core]
version = "0.6.0-alpha"
[dependencies.oxdock-fs]
version = "0.6.0-alpha"
[dependencies.oxdock-parser]
version = "0.6.0-alpha"
[dependencies.oxdock-process]
version = "0.6.0-alpha"
[dependencies.tempfile]
version = "3.24.0"
[dev-dependencies.oxdock-sys-test-utils]
version = "0.6.0-alpha"