Some checks failed
CI / Check / macos-latest (push) Has been cancelled
CI / Check / ubuntu-latest (push) Has been cancelled
CI / Check / windows-latest (push) Has been cancelled
CI / Test / macos-latest (push) Has been cancelled
CI / Test / ubuntu-latest (push) Has been cancelled
CI / Test / windows-latest (push) Has been cancelled
CI / Clippy (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / Secrets Scan (push) Has been cancelled
CI / Install Script Smoke Test (push) Has been cancelled
34 lines
1.0 KiB
TOML
34 lines
1.0 KiB
TOML
[package]
|
|
name = "openfang-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "CLI tool for the OpenFang Agent OS"
|
|
|
|
[[bin]]
|
|
name = "openfang"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
openfang-types = { path = "../openfang-types" }
|
|
openfang-kernel = { path = "../openfang-kernel" }
|
|
openfang-api = { path = "../openfang-api" }
|
|
openfang-migrate = { path = "../openfang-migrate" }
|
|
openfang-skills = { path = "../openfang-skills" }
|
|
openfang-extensions = { path = "../openfang-extensions" }
|
|
zeroize = { workspace = true }
|
|
tokio = { workspace = true }
|
|
clap = { workspace = true }
|
|
clap_complete = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
dirs = { workspace = true }
|
|
reqwest = { workspace = true, features = ["blocking"] }
|
|
openfang-runtime = { path = "../openfang-runtime" }
|
|
uuid = { workspace = true }
|
|
ratatui = { workspace = true }
|
|
colored = { workspace = true }
|