[package]
edition = "2024"
name = "objectiveai-cli"
version = "2.1.1"
authors = ["ObjectiveAI <admin@objectiveai.dev>"]
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ObjectiveAI command-line interface and embeddable library"
homepage = "https://objectiveai.dev"
documentation = "https://docs.rs/objectiveai-cli"
readme = "README.md"
keywords = [
"llm",
"ai",
"swarm",
"cli",
]
license = "MIT"
repository = "https://github.com/ObjectiveAI/objectiveai"
[features]
default = [
"rustpython",
"systempython",
]
rustpython = ["dep:rustpython"]
systempython = []
[lib]
name = "objectiveai_cli"
path = "src/lib.rs"
[[bin]]
name = "objectiveai-cli"
path = "src/main.rs"
[[test]]
name = "agents_continuation_tool_session_e2e"
path = "tests/agents_continuation_tool_session_e2e.rs"
[[test]]
name = "agents_duplicate_server_names_e2e"
path = "tests/agents_duplicate_server_names_e2e.rs"
[[test]]
name = "agents_duplicate_tool_names_e2e"
path = "tests/agents_duplicate_tool_names_e2e.rs"
[[test]]
name = "agents_message_continuation_e2e"
path = "tests/agents_message_continuation_e2e.rs"
[[test]]
name = "cli_test_util"
path = "tests/cli_test_util.rs"
[[test]]
name = "function_execution_snapshot_with_tools"
path = "tests/function_execution_snapshot_with_tools.rs"
[[test]]
name = "function_execution_snapshots"
path = "tests/function_execution_snapshots.rs"
[[test]]
name = "function_shared_session_id_e2e"
path = "tests/function_shared_session_id_e2e.rs"
[[test]]
name = "hang_preventing_executor"
path = "tests/hang_preventing_executor.rs"
[[test]]
name = "plugin_dispatch_e2e"
path = "tests/plugin_dispatch_e2e.rs"
[[test]]
name = "plugin_mcp_dispatch_e2e"
path = "tests/plugin_mcp_dispatch_e2e.rs"
[[test]]
name = "plugin_mcp_function_swarm_e2e"
path = "tests/plugin_mcp_function_swarm_e2e.rs"
[[test]]
name = "tool_dispatch_e2e"
path = "tests/tool_dispatch_e2e.rs"
[[test]]
name = "viewer_send_e2e"
path = "tests/viewer_send_e2e.rs"
[dependencies.async-stream]
version = "0.3.6"
[dependencies.axum]
version = "0.8.8"
[dependencies.base62]
version = "2.2.4"
[dependencies.base64]
version = "0.22.1"
[dependencies.chrono]
version = "=0.4.39"
features = [
"std",
"clock",
]
default-features = false
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.dashmap]
version = "6.1.0"
[dependencies.dirs]
version = "6.0.0"
[dependencies.dotenv]
version = "0.15.0"
[dependencies.envconfig]
version = "0.11.1"
[dependencies.futures]
version = "0.3.32"
[dependencies.git2]
version = "0.20.4"
features = ["vendored-libgit2"]
default-features = false
[dependencies.hashbrown]
version = "0.15"
[dependencies.humantime]
version = "2"
[dependencies.indexmap]
version = "2.13"
[dependencies.jaq-core]
version = "2.2.1"
[dependencies.jaq-json]
version = "1.1.3"
features = ["serde_json"]
[dependencies.jaq-std]
version = "2.1.2"
[dependencies.objectiveai-mcp]
version = "2.1.1"
[dependencies.objectiveai-sdk]
version = "2.1.1"
[dependencies.os_pipe]
version = "1.2"
[dependencies.percent-encoding]
version = "2.3"
[dependencies.postgresql_embedded]
version = "0.20"
features = [
"bundled",
"theseus",
"tokio",
"rustls",
]
default-features = false
[dependencies.rand]
version = "0.9.2"
[dependencies.regex]
version = "1.12.3"
[dependencies.reqwest]
version = "0.12.28"
features = [
"charset",
"http2",
"rustls-tls",
"json",
]
default-features = false
[dependencies.reqwest-eventsource]
version = "0.6.0"
[dependencies.rustpython]
version = "0.4.0"
optional = true
[dependencies.schemars]
version = "1.2.1"
[dependencies.semver]
version = "1.0.28"
[dependencies.serde]
version = "1.0.228"
[dependencies.serde_json]
version = "1.0.149"
features = ["preserve_order"]
[dependencies.serde_path_to_error]
version = "0.1.20"
[dependencies.sha2]
version = "0.10.9"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"tls-rustls",
"postgres",
"macros",
]
default-features = false
[dependencies.sqlx-postgres]
version = "0.8"
features = [
"chrono",
"uuid",
"ipnetwork",
"json",
]
default-features = false
[dependencies.sysinfo]
version = "0.38.4"
features = ["system"]
default-features = false
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tiktoken-rs]
version = "0.12.0"
[dependencies.tokio]
version = "1.50.0"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1.18"
features = [
"io-util",
"sync",
]
[dependencies.uuid]
version = "1.22"
features = ["v4"]
[dependencies.zip]
version = "2.4.0"
features = ["deflate"]
default-features = false
[dev-dependencies.axum]
version = "0.8.8"
[dev-dependencies.insta]
version = "1.40"
features = ["json"]
[dev-dependencies.notify]
version = "8.2"
[dev-dependencies.tempfile]
version = "3.10"
[dev-dependencies.wiremock]
version = "0.6"
[target."cfg(unix)".dependencies.nix]
version = "0.29"
features = ["fs"]
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_System_Console",
"Win32_Storage_FileSystem",
"Win32_Security",
]