[package]
edition = "2024"
name = "cuenv"
version = "0.26.19"
authors = ["cuenv Contributors"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Event-driven CLI with inline TUI for cuenv"
homepage = "https://github.com/cuenv/cuenv"
documentation = "https://docs.rs/cuenv-cli"
readme = "readme.md"
keywords = [
"cue",
"configuration",
"validation",
"ffi",
]
categories = [
"command-line-utilities",
"config",
"development-tools",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/cuenv/cuenv"
resolver = "2"
[features]
all-platforms = [
"github",
"gitlab",
"bitbucket",
"buildkite",
"homebrew",
]
bitbucket = ["dep:cuenv-bitbucket"]
buildkite = ["dep:cuenv-buildkite"]
dagger-backend = ["dep:cuenv-dagger"]
default = [
"dagger-backend",
"github",
"gitlab",
"bitbucket",
"buildkite",
"homebrew",
]
github = ["dep:cuenv-github"]
gitlab = ["dep:cuenv-gitlab"]
homebrew = ["dep:cuenv-homebrew"]
[lib]
name = "cuenv"
path = "src/lib.rs"
[[bin]]
name = "cuenv"
path = "src/main.rs"
[[test]]
name = "bdd"
path = "tests/bdd.rs"
harness = false
[[test]]
name = "contributor_integration"
path = "tests/contributor_integration.rs"
[[test]]
name = "cross_project_deps"
path = "tests/cross_project_deps.rs"
[[test]]
name = "e2e_garbage_hook"
path = "tests/e2e_garbage_hook.rs"
[[test]]
name = "evaluation_count"
path = "tests/evaluation_count.rs"
[[test]]
name = "examples_dag_tests"
path = "tests/examples_dag_tests.rs"
[[test]]
name = "exec_hooks_wait"
path = "tests/exec_hooks_wait.rs"
[[test]]
name = "export_performance"
path = "tests/export_performance.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "multiline_hook"
path = "tests/multiline_hook.rs"
[[test]]
name = "nix_flake_hook"
path = "tests/nix_flake_hook.rs"
[[test]]
name = "schema_project_base_tests"
path = "tests/schema_project_base_tests.rs"
[[test]]
name = "shell_hook"
path = "tests/shell_hook.rs"
[[test]]
name = "stress_tests"
path = "tests/stress_tests.rs"
[[test]]
name = "sync_scope_rules"
path = "tests/sync_scope_rules.rs"
[[test]]
name = "task_exec_integration"
path = "tests/task_exec_integration.rs"
[[test]]
name = "trace_acceptance"
path = "tests/trace_acceptance.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4.5"
features = ["unstable-dynamic"]
[dependencies.crossterm]
version = "0.29"
features = ["event-stream"]
[dependencies.ctrlc]
version = "3.5"
[dependencies.cuengine]
version = "0.26.0"
[dependencies.cuenv-bitbucket]
version = "0.26.0"
optional = true
[dependencies.cuenv-buildkite]
version = "0.26.0"
optional = true
[dependencies.cuenv-cache]
version = "0.26.0"
[dependencies.cuenv-ci]
version = "0.26.0"
[dependencies.cuenv-codegen]
version = "0.26.0"
[dependencies.cuenv-codeowners]
version = "0.26.0"
[dependencies.cuenv-core]
version = "0.26.0"
[dependencies.cuenv-dagger]
version = "0.26.0"
optional = true
[dependencies.cuenv-editorconfig]
version = "0.26.0"
[dependencies.cuenv-events]
version = "0.26.0"
[dependencies.cuenv-github]
version = "0.26.0"
optional = true
[dependencies.cuenv-gitlab]
version = "0.26.0"
optional = true
[dependencies.cuenv-homebrew]
version = "0.26.0"
optional = true
[dependencies.cuenv-hooks]
version = "0.26.0"
[dependencies.cuenv-ignore]
version = "0.26.0"
[dependencies.cuenv-release]
version = "0.26.0"
[dependencies.cuenv-task-discovery]
version = "0.26.0"
[dependencies.cuenv-tools-github]
version = "0.26.0"
[dependencies.cuenv-tools-nix]
version = "0.26.0"
[dependencies.cuenv-tools-oci]
version = "0.26.0"
[dependencies.cuenv-tools-rustup]
version = "0.26.0"
[dependencies.cuenv-tools-url]
version = "0.26.0"
[dependencies.cuenv-workspaces]
version = "0.26.0"
features = [
"detection",
"discovery-javascript",
"discovery-rust",
]
[dependencies.dirs]
version = "6.0"
[dependencies.futures]
version = "0.3"
[dependencies.gix]
version = "0.77"
features = [
"revision",
"blob-diff",
]
default-features = false
[dependencies.glob]
version = "0.3"
[dependencies.ignore]
version = "0.4"
[dependencies.indexmap]
version = "2.13"
features = ["serde"]
[dependencies.libc]
version = "0.2"
[dependencies.miette]
version = "7.6"
features = ["fancy"]
[dependencies.ratatui]
version = "0.30"
[dependencies.rayon]
version = "1.10"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["raw_value"]
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.similar]
version = "2.7"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.49"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
[dependencies.toml]
version = "0.9"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.uuid]
version = "1.20"
features = [
"v4",
"serde",
]
[dependencies.walkdir]
version = "2.5"
[dev-dependencies.assert_cmd]
version = "2.1.2"
[dev-dependencies.cucumber]
version = "0.22"
[dev-dependencies.cuenv-task-graph]
version = "0.26.0"
[dev-dependencies.predicates]
version = "3.1.3"
[dev-dependencies.sha2]
version = "0.10"
[dev-dependencies.tempfile]
version = "3.25"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.which]
version = "8.0.0"
[lints.clippy]
as_ptr_cast_mut = "allow"
cognitive_complexity = "allow"
dbg_macro = "warn"
derive_partial_eq_without_eq = "allow"
doc_markdown = "allow"
expect_used = "warn"
implicit_hasher = "allow"
iter_on_single_items = "allow"
missing_const_for_fn = "allow"
missing_panics_doc = "allow"
multiple_crate_versions = "allow"
needless_collect = "allow"
needless_pass_by_ref_mut = "allow"
option_if_let_else = "allow"
or_fun_call = "allow"
panic = "warn"
print_stderr = "warn"
print_stdout = "warn"
redundant_clone = "allow"
redundant_closure_for_method_calls = "allow"
significant_drop_tightening = "allow"
todo = "warn"
too_many_arguments = "allow"
too_many_lines = "allow"
unimplemented = "warn"
uninlined_format_args = "allow"
unnecessary_literal_bound = "allow"
unnecessary_map_or = "allow"
unwrap_used = "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 = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "warn"