minco-dev 0.4.0

Deterministic local process plans and coordinated development supervision for Minco
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.97.1"
name = "minco-dev"
version = "0.4.0"
authors = ["Minco Contributors"]
build = false
include = [
    "src/**",
    "tests/**",
    "Cargo.toml",
    "README.md",
    "LICENSE-MIT",
    "LICENSE-APACHE",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic local process plans and coordinated development supervision for Minco"
homepage = "https://github.com/xicv/minco"
documentation = "https://docs.rs/minco-dev"
readme = "README.md"
keywords = [
    "minco",
    "development",
    "process",
    "supervisor",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/xicv/minco"

[package.metadata.docs.rs]
all-features = true

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

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

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

[dependencies.reqwest]
version = "0.13"
features = [
    "json",
    "multipart",
    "rustls",
]
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.thiserror]
version = "2.0"

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

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.tempfile]
version = "3.27"

[target."cfg(unix)".dependencies.rustix]
version = "1.1.4"
features = ["process"]

[lints.clippy]
future_not_send = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
too_many_lines = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_must_use = "deny"