cue-cli 0.2.0

Installed Cue command aggregator and extension dispatcher
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.95"
name = "cue-cli"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Installed Cue command aggregator and extension dispatcher"
readme = false
license = "MIT"
repository = "https://github.com/zendev-lab/cue"
resolver = "2"

[features]
cue-client = []
cue-daemon = ["dep:cue-daemon"]
cue-tui = ["dep:cue-tui"]
default = [
    "cue-client",
    "cue-daemon",
    "cue-tui",
]

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

[[bin]]
name = "cue"
path = "src/main.rs"

[[bin]]
name = "cue-client"
path = "src/bin/cue-client.rs"
required-features = ["cue-client"]

[[bin]]
name = "cue-tui"
path = "src/bin/cue-tui.rs"
required-features = ["cue-tui"]

[[bin]]
name = "cued"
path = "src/bin/cued.rs"
required-features = ["cue-daemon"]

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

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

[dependencies.anyhow]
version = "1"

[dependencies.cue-client]
version = "0.2.0"

[dependencies.cue-daemon]
version = "0.2.0"
optional = true

[dependencies.cue-tui]
version = "0.2.0"
optional = true

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

[dependencies.toml]
version = "1.1"

[dev-dependencies.libc]
version = "0.2"

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

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

[dev-dependencies.uuid]
version = "1"
features = ["v4"]

[dev-dependencies.vt100]
version = "0.16.2"