[package]
edition = "2024"
rust-version = "1.95"
name = "ready-set"
version = "0.1.0-alpha.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ready, set, go: capability lifecycle orchestration for projects."
homepage = "https://github.com/pulsearc-ai/ready-set"
documentation = "https://docs.rs/ready-set"
readme = "README.md"
keywords = [
"ready-set",
"cli",
"capabilities",
"plugins",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pulsearc-ai/ready-set"
[lib]
name = "ready_set"
path = "src/lib.rs"
[[bin]]
name = "ready-set"
path = "src/main.rs"
[[test]]
name = "core_go_e2e"
path = "tests/core_go_e2e.rs"
[[test]]
name = "dispatcher_e2e"
path = "tests/dispatcher_e2e.rs"
[[test]]
name = "lifecycle_e2e"
path = "tests/lifecycle_e2e.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.directories]
version = "5"
[dependencies.ready-set-sdk]
version = "0.1.0-alpha.1"
[dependencies.semver]
version = "1"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
"macros",
"serde",
]
[dependencies.toml]
version = "0.8"
[dependencies.toml_edit]
version = "0.22"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.walkdir]
version = "2"
[dependencies.which]
version = "6"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
cargo_common_metadata = "allow"
dbg_macro = "warn"
missing_errors_doc = "deny"
missing_panics_doc = "deny"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
panic = "warn"
todo = "warn"
unimplemented = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
let_underscore_drop = "warn"
missing_docs = "deny"
non_ascii_idents = "warn"
single_use_lifetimes = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unsafe_code = "forbid"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
unused_qualifications = "warn"
variant_size_differences = "warn"