[package]
edition = "2024"
rust-version = "1.88"
name = "lightshuttle"
version = "0.4.0"
authors = ["Nubster"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight developer-time orchestrator for polyglot teams"
homepage = "https://github.com/nubster-opensources/lightshuttle"
readme = "README.md"
keywords = [
"orchestrator",
"dev-tools",
"docker",
"polyglot",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nubster-opensources/lightshuttle"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[[bin]]
name = "lightshuttle"
path = "src/main.rs"
[[test]]
name = "alias"
path = "tests/alias.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "export"
path = "tests/export.rs"
[[test]]
name = "secrets"
path = "tests/secrets.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.futures]
version = "0.3"
[dependencies.humantime]
version = "2"
[dependencies.lightshuttle-control]
version = "0.4.0"
[dependencies.lightshuttle-export]
version = "0.4.0"
[dependencies.lightshuttle-manifest]
version = "0.4.0"
[dependencies.lightshuttle-otel]
version = "0.4.0"
[dependencies.lightshuttle-runtime]
version = "0.4.0"
[dependencies.lightshuttle-secrets]
version = "0.4.0"
[dependencies.owo-colors]
version = "4"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"signal",
"process",
"sync",
"time",
]
[dependencies.tokio-tungstenite]
version = "0.29"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.url]
version = "2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1