[package]
edition = "2024"
rust-version = "1.94.0"
name = "runner-manager"
version = "0.4.8"
authors = ["Ivan Murzak"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-first autoscaling manager for ephemeral GitHub Actions self-hosted runners, with a CLI and a Ratatui TUI."
homepage = "https://github.com/IvanMurzak/GitHub-Runner-Scaler-UI"
readme = false
keywords = [
"github-actions",
"self-hosted-runner",
"autoscaling",
"tui",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/IvanMurzak/GitHub-Runner-Scaler-UI"
[[bin]]
name = "runner-manager"
path = "src/main.rs"
[[test]]
name = "auth_onboarding"
path = "tests/auth_onboarding.rs"
[[test]]
name = "auth_receive"
path = "tests/auth_receive.rs"
[[test]]
name = "auth_states"
path = "tests/auth_states.rs"
[[test]]
name = "cli_command_surface"
path = "tests/cli_command_surface.rs"
[[test]]
name = "host_capacity_and_status"
path = "tests/host_capacity_and_status.rs"
[[test]]
name = "install_scripts"
path = "tests/install_scripts.rs"
[[test]]
name = "no_secret_reaches_command_output"
path = "tests/no_secret_reaches_command_output.rs"
[[test]]
name = "policy_commands"
path = "tests/policy_commands.rs"
[[test]]
name = "readme_disclosure"
path = "tests/readme_disclosure.rs"
[[test]]
name = "release_channels"
path = "tests/release_channels.rs"
[[test]]
name = "release_workflow"
path = "tests/release_workflow.rs"
[[test]]
name = "update_command"
path = "tests/update_command.rs"
[[test]]
name = "workflow_action_versions"
path = "tests/workflow_action_versions.rs"
[[test]]
name = "workflow_triggers"
path = "tests/workflow_triggers.rs"
[[test]]
name = "workspace_acceptance_evidence"
path = "tests/workspace_acceptance_evidence.rs"
[[test]]
name = "workspace_commands"
path = "tests/workspace_commands.rs"
[[test]]
name = "workspace_security_acceptance"
path = "tests/workspace_security_acceptance.rs"
[[test]]
name = "wsl_operator_documentation"
path = "tests/wsl_operator_documentation.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.async-trait]
version = "0.1.92"
[dependencies.chrono]
version = "0.4.45"
features = [
"clock",
"serde",
"std",
]
default-features = false
[dependencies.clap]
version = "4.6.6"
features = [
"derive",
"env",
"wrap_help",
]
[dependencies.crossterm]
version = "0.29.0"
features = [
"bracketed-paste",
"event-stream",
]
[dependencies.flate2]
version = "1.1.9"
[dependencies.futures]
version = "0.3.34"
[dependencies.hex]
version = "0.4.3"
[dependencies.ratatui]
version = "0.30.2"
[dependencies.reqwest]
version = "0.13.4"
features = [
"charset",
"gzip",
"http2",
"json",
"query",
"rustls",
"stream",
"system-proxy",
]
default-features = false
[dependencies.runner-manager-agent]
version = "0.4.8"
[dependencies.runner-manager-domain]
version = "0.4.8"
[dependencies.runner-manager-github]
version = "0.4.8"
[dependencies.runner-manager-platform]
version = "0.4.8"
[dependencies.secrecy]
version = "0.10.3"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.sha2]
version = "0.11.0"
[dependencies.tar]
version = "0.4.46"
[dependencies.tempfile]
version = "3.27.0"
[dependencies.thiserror]
version = "2.0.20"
[dependencies.tokio]
version = "1.53.1"
features = [
"fs",
"io-util",
"macros",
"net",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-subscriber]
version = "0.3.23"
features = [
"env-filter",
"json",
"registry",
]
[dependencies.unicode-truncate]
version = "2.0.1"
[dependencies.unicode-width]
version = "0.2.2"
[dependencies.uuid]
version = "1.24.1"
features = [
"serde",
"v4",
]
[dependencies.zip]
version = "8.6.0"
[dev-dependencies.assert_cmd]
version = "2.2.2"
[dev-dependencies.insta]
version = "1.48.0"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.serial_test]
version = "4.0.1"
[dev-dependencies.tempfile]
version = "3.27.0"
[dev-dependencies.tokio]
version = "1.53.1"
features = [
"fs",
"io-util",
"macros",
"net",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
"test-util",
]