[package]
edition = "2021"
name = "apcore-cli"
version = "0.2.2"
authors = ["aiperceivable <tercel.yi@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for apcore modules"
homepage = "https://aiperceivable.com"
documentation = "https://apcore.aiperceivable.com/"
readme = "README.md"
keywords = [
"ai",
"llm",
"module",
"cli",
"schema",
]
categories = [
"command-line-utilities",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/aiperceivable/apcore-cli-rust"
[features]
test-support = []
[lib]
name = "apcore_cli"
path = "src/lib.rs"
[[bin]]
name = "apcore-cli"
path = "src/main.rs"
[[test]]
name = "approval_integration"
path = "tests/approval_integration.rs"
[[test]]
name = "test_approval"
path = "tests/test_approval.rs"
[[test]]
name = "test_audit"
path = "tests/security/test_audit.rs"
[[test]]
name = "test_auth"
path = "tests/security/test_auth.rs"
[[test]]
name = "test_cli"
path = "tests/test_cli.rs"
[[test]]
name = "test_config"
path = "tests/test_config.rs"
[[test]]
name = "test_config_encryptor"
path = "tests/security/test_config_encryptor.rs"
[[test]]
name = "test_discovery"
path = "tests/test_discovery.rs"
[[test]]
name = "test_e2e"
path = "tests/test_e2e.rs"
[[test]]
name = "test_integration"
path = "tests/test_integration.rs"
[[test]]
name = "test_output"
path = "tests/test_output.rs"
[[test]]
name = "test_ref_resolver"
path = "tests/test_ref_resolver.rs"
[[test]]
name = "test_sandbox"
path = "tests/security/test_sandbox.rs"
[[test]]
name = "test_schema_parser"
path = "tests/test_schema_parser.rs"
[[test]]
name = "test_shell"
path = "tests/test_shell.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.anyhow]
version = "1"
[dependencies.apcore]
version = "0.13.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
"string",
]
[dependencies.clap_complete]
version = "4"
[dependencies.comfy-table]
version = "6"
[dependencies.dirs]
version = "5"
[dependencies.gethostname]
version = "0.4"
[dependencies.keyring]
version = "2"
[dependencies.pbkdf2]
version = "0.12"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"process",
"io-util",
"io-std",
"signal",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.tokio-test]
version = "0.4"