shep 0.1.15

The shep binary: a process manager that keeps a flock of long-running processes alive on macOS, Linux and Windows, with logs, watch and cron restarts, and webhook alerts
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "shep"
version = "0.1.15"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The shep binary: a process manager that keeps a flock of long-running processes alive on macOS, Linux and Windows, with logs, watch and cron restarts, and webhook alerts"
documentation = "https://shep.turtlesocks.dev"
readme = "README.md"
keywords = [
    "shep",
    "process-manager",
    "supervisor",
    "daemon",
    "cli",
]
categories = [
    "command-line-utilities",
    "os",
    "development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TurtIeSocks/shep"

[package.metadata.deb]
maintainer = "TurtIeSocks <TurtIeSocks@users.noreply.github.com>"
copyright = "Copyright (c) TurtIeSocks"
license-file = [
    "LICENSE-APACHE",
    "0",
]
section = "admin"
priority = "optional"
depends = "$auto"
extended-description = """
shep keeps a flock of long-running processes alive: it restarts them when they die, captures what they print, and says plainly when something is wrong. It also restarts on file changes, on a cron schedule, or over a memory limit, and can alert a webhook when a process misbehaves.

This package installs the binaries only. Run `shep startup` to have systemd supervise the flock from boot; nothing here writes to systemd on your behalf."""
assets = [
    [
    "target/release/shep",
    "usr/bin/",
    "755",
],
    [
    "target/release/shep-runtime",
    "usr/bin/",
    "755",
],
    [
    "target/release/shep-dev",
    "usr/bin/",
    "755",
],
    [
    "README.md",
    "usr/share/doc/shep/README.md",
    "644",
],
    [
    "LICENSE-MIT",
    "usr/share/doc/shep/LICENSE-MIT",
    "644",
],
    [
    "LICENSE-APACHE",
    "usr/share/doc/shep/LICENSE-APACHE",
    "644",
],
    [
    "completions/shep.bash",
    "usr/share/bash-completion/completions/shep",
    "644",
],
    [
    "completions/_shep",
    "usr/share/zsh/vendor-completions/_shep",
    "644",
],
    [
    "completions/shep.fish",
    "usr/share/fish/vendor_completions.d/shep.fish",
    "644",
],
]

[lib]
name = "shep"
path = "src/lib.rs"

[[bin]]
name = "shep"
path = "src/bin/shep.rs"

[[bin]]
name = "shep-dev"
path = "src/bin/shep-dev.rs"

[[bin]]
name = "shep-runtime"
path = "src/bin/shep-runtime.rs"

[[test]]
name = "cli_e2e"
path = "tests/cli_e2e.rs"

[[test]]
name = "init"
path = "tests/init.rs"

[[test]]
name = "term_panic_order"
path = "tests/term_panic_order.rs"

[dependencies.anstyle]
version = "1.0.5"
default-features = false

[dependencies.chrono]
version = "0.4"
features = [
    "clock",
    "std",
]
default-features = false

[dependencies.clap]
version = "4"
features = [
    "std",
    "derive",
    "help",
    "usage",
    "error-context",
    "suggestions",
    "env",
    "wrap_help",
]
default-features = false

[dependencies.clap_complete]
version = "4.6.0"
default-features = false

[dependencies.crossterm]
version = "0.29"
features = [
    "events",
    "event-stream",
]
default-features = false

[dependencies.futures-util]
version = "0.3"
features = [
    "sink",
    "std",
]
default-features = false

[dependencies.instability]
version = "0.3.4"
default-features = false

[dependencies.ratatui]
version = "0.30"
features = [
    "std",
    "crossterm_0_29",
    "layout-cache",
    "underline-color",
]
default-features = false

[dependencies.ring]
version = "0.17"
default-features = false

[dependencies.rmcp]
version = "3.1.2"
features = [
    "server",
    "macros",
    "transport-io",
]
default-features = false

[dependencies.schemars]
version = "1.2.2"
features = [
    "derive",
    "std",
]
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]
default-features = false

[dependencies.serde_json]
version = "1"
features = ["std"]
default-features = false

[dependencies.shep-client]
version = "0.1.15"

[dependencies.shep-core]
version = "0.1.15"
features = ["schema"]

[dependencies.shep-daemon]
version = "0.1.15"

[dependencies.sysinfo]
version = "0.38.4"
features = ["system"]
default-features = false

[dependencies.tempfile]
version = "3.10"
default-features = false

[dependencies.time]
version = "0.3.37"
default-features = false

[dependencies.tokio]
version = "1.41"
features = [
    "rt-multi-thread",
    "macros",
    "signal",
    "net",
    "time",
    "sync",
    "io-util",
    "fs",
]
default-features = false

[dependencies.tokio-rustls]
version = "0.26"
features = [
    "ring",
    "tls12",
]
default-features = false

[dependencies.toml]
version = "0.8"
features = [
    "parse",
    "display",
]
default-features = false

[dependencies.toml_edit]
version = "0.22.7"
features = [
    "display",
    "parse",
]
default-features = false

[dependencies.tracing-subscriber]
version = "0.3.23"
features = [
    "std",
    "fmt",
    "ansi",
    "env-filter",
    "json",
]
default-features = false

[dependencies.unicode-width]
version = "0.2"
default-features = false

[dependencies.webpki-roots]
version = "0.26"

[dev-dependencies.assert_cmd]
version = "2"
default-features = false

[dev-dependencies.insta]
version = "1.18.1"
features = ["json"]
default-features = false

[dev-dependencies.predicates]
version = "3"
default-features = false

[dev-dependencies.proptest]
version = "1"
features = ["std"]
default-features = false

[dev-dependencies.shep-client]
version = "0.1.15"
features = ["test-support"]

[dev-dependencies.tokio]
version = "1.41"
features = [
    "test-util",
    "rt-multi-thread",
]
default-features = false

[target."cfg(any())".dependencies.lazy_static]
version = "1.0.2"
default-features = false

[target."cfg(unix)".dependencies.nix]
version = "0.29"
features = [
    "signal",
    "process",
    "user",
    "fs",
]
default-features = false

[target."cfg(unix)".dev-dependencies.nix]
version = "0.29"
features = [
    "signal",
    "process",
    "user",
]
default-features = false

[lints.clippy]
missing_errors_doc = "deny"
undocumented_unsafe_blocks = "deny"

[lints.rust]
missing_debug_implementations = "deny"
missing_docs = "deny"