[package]
edition = "2021"
name = "start-command"
version = "0.17.1"
authors = ["Link Foundation"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Gamification of coding, execute any command with ability to auto-report issues on GitHub"
homepage = "https://github.com/link-foundation/start#readme"
readme = "README.md"
keywords = [
"cli",
"command",
"gamification",
"github",
"automation",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Unlicense"
repository = "https://github.com/link-foundation/start"
[lib]
name = "start_command"
path = "src/lib/mod.rs"
[[bin]]
name = "start"
path = "src/bin/main.rs"
[[test]]
name = "args_parser"
path = "tests/args_parser.rs"
[[test]]
name = "args_parser_shell"
path = "tests/args_parser_shell.rs"
[[test]]
name = "cleanup"
path = "tests/cleanup.rs"
[[test]]
name = "echo_integration"
path = "tests/echo_integration.rs"
[[test]]
name = "execution_control"
path = "tests/execution_control.rs"
[[test]]
name = "execution_store"
path = "tests/execution_store.rs"
[[test]]
name = "failure_handler"
path = "tests/failure_handler.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "isolation"
path = "tests/isolation.rs"
[[test]]
name = "isolation_log"
path = "tests/isolation_log.rs"
[[test]]
name = "isolation_unit"
path = "tests/isolation_unit.rs"
[[test]]
name = "output_blocks"
path = "tests/output_blocks.rs"
[[test]]
name = "output_blocks_extended"
path = "tests/output_blocks_extended.rs"
[[test]]
name = "regression_84"
path = "tests/regression_84.rs"
[[test]]
name = "regression_91"
path = "tests/regression_91.rs"
[[test]]
name = "sequence_parser"
path = "tests/sequence_parser.rs"
[[test]]
name = "session_name_status"
path = "tests/session_name_status.rs"
[[test]]
name = "signal_handler"
path = "tests/signal_handler.rs"
[[test]]
name = "status_formatter"
path = "tests/status_formatter.rs"
[[test]]
name = "user_manager"
path = "tests/user_manager.rs"
[[test]]
name = "utils"
path = "tests/utils.rs"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
[dependencies.dirs]
version = "6"
[dependencies.lino-objects-codec]
version = "0.2.1"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tempfile]
version = "3"
[target."cfg(unix)".dependencies.libc]
version = "0.2"