[package]
edition = "2024"
rust-version = "1.94.0"
name = "runner-manager-platform"
version = "0.4.5"
authors = ["Ivan Murzak"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Process, filesystem, machine-scoped secret store, service, and OS adapters for runner-manager."
homepage = "https://github.com/IvanMurzak/GitHub-Runner-Scaler-UI"
readme = false
license = "MIT"
repository = "https://github.com/IvanMurzak/GitHub-Runner-Scaler-UI"
[lib]
name = "runner_manager_platform"
path = "src/lib.rs"
[[example]]
name = "service_host_fixture"
path = "examples/service_host_fixture.rs"
[[test]]
name = "another_program_can_read_the_stored_token"
path = "tests/another_program_can_read_the_stored_token.rs"
[[test]]
name = "no_token_outside_the_store"
path = "tests/no_token_outside_the_store.rs"
[[test]]
name = "no_wsl_credential_outside_child_stdin"
path = "tests/no_wsl_credential_outside_child_stdin.rs"
[[test]]
name = "privileged_service_installer"
path = "tests/privileged_service_installer.rs"
[[test]]
name = "privileged_tests_are_wired_into_ci"
path = "tests/privileged_tests_are_wired_into_ci.rs"
[[test]]
name = "privileged_wsl_lifecycle"
path = "tests/privileged_wsl_lifecycle.rs"
[[test]]
name = "secret_store_without_a_login_session"
path = "tests/secret_store_without_a_login_session.rs"
[dependencies.async-trait]
version = "0.1.92"
[dependencies.chrono]
version = "0.4.45"
features = [
"clock",
"serde",
"std",
]
default-features = false
[dependencies.directories]
version = "6.0.0"
[dependencies.hex]
version = "0.4.3"
[dependencies.runner-manager-domain]
version = "0.4.5"
[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.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.toml]
version = "1.1.4"
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-appender]
version = "0.2.5"
[dependencies.tracing-subscriber]
version = "0.3.23"
features = [
"env-filter",
"json",
"registry",
]
[dependencies.uuid]
version = "1.24.1"
features = [
"serde",
"v4",
]
[dev-dependencies.insta]
version = "1.48.0"
[dev-dependencies.serial_test]
version = "4.0.1"
[dev-dependencies.tokio]
version = "1.53.1"
features = [
"fs",
"io-util",
"macros",
"net",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
"test-util",
]
[target.'cfg(target_os = "macos")'.dependencies.core-foundation]
version = "0.10.1"
[target.'cfg(target_os = "macos")'.dependencies.security-framework]
version = "3.7.0"
[target."cfg(unix)".dependencies.libc]
version = "0.2.189"
[target."cfg(windows)".dependencies.windows]
version = "0.62.2"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_Security_Cryptography",
"Win32_Storage_FileSystem",
"Win32_System_SystemInformation",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
]
[target."cfg(windows)".dependencies.windows-service]
version = "0.8.1"