[package]
edition = "2024"
rust-version = "1.88"
name = "raps-cli"
version = "4.15.0"
authors = ["Dmytro Yemelianov"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RAPS (rapeseed) - Rust Autodesk Platform Services CLI"
homepage = "https://rapscli.xyz"
documentation = "https://rapscli.xyz/docs"
readme = "README.md"
keywords = [
"autodesk",
"aps",
"forge",
"bim360",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/dmytro-yemelianov/raps.git"
resolver = "2"
[features]
dashboard = [
"ratatui",
"crossterm",
]
default = []
[lib]
name = "raps_cli"
path = "src/lib.rs"
[[bin]]
name = "raps"
path = "src/main.rs"
[[test]]
name = "api_tests"
path = "tests/api_tests.rs"
[[test]]
name = "auth_commands"
path = "tests/auth_commands.rs"
[[test]]
name = "bucket_commands"
path = "tests/bucket_commands.rs"
[[test]]
name = "cli_general"
path = "tests/cli_general.rs"
[[test]]
name = "config_commands"
path = "tests/config_commands.rs"
[[test]]
name = "da_commands"
path = "tests/da_commands.rs"
[[test]]
name = "exit_codes_test"
path = "tests/exit_codes_test.rs"
[[test]]
name = "json_schema_test"
path = "tests/json_schema_test.rs"
[[test]]
name = "live_api_tests"
path = "tests/live_api_tests.rs"
[[test]]
name = "logging_test"
path = "tests/logging_test.rs"
[[test]]
name = "mcp_auth_tests"
path = "tests/mcp_auth_tests.rs"
[[test]]
name = "non_interactive_test"
path = "tests/non_interactive_test.rs"
[[test]]
name = "object_commands"
path = "tests/object_commands.rs"
[[test]]
name = "output_consistency_test"
path = "tests/output_consistency_test.rs"
[[test]]
name = "output_format_test"
path = "tests/output_format_test.rs"
[[test]]
name = "output_tty_test"
path = "tests/output_tty_test.rs"
[[test]]
name = "redaction_test"
path = "tests/redaction_test.rs"
[[test]]
name = "translate_commands"
path = "tests/translate_commands.rs"
[[test]]
name = "webhook_commands"
path = "tests/webhook_commands.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.clap_mangen]
version = "0.2"
[dependencies.colored]
version = "2.1"
[dependencies.console]
version = "0.15"
[dependencies.crossterm]
version = "0.28"
optional = true
[dependencies.csv]
version = "1.3"
[dependencies.dialoguer]
version = "0.12"
features = ["fuzzy-select"]
[dependencies.directories]
version = "5.0"
[dependencies.ed25519-dalek]
version = "2.1"
features = ["rand_core"]
[dependencies.futures-util]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.indicatif]
version = "0.18"
[dependencies.nu-ansi-term]
version = "0.50"
[dependencies.rand]
version = "0.8"
[dependencies.raps-acc]
version = "4.15.0"
[dependencies.raps-admin]
version = "4.15.0"
[dependencies.raps-da]
version = "4.15.0"
[dependencies.raps-derivative]
version = "4.15.0"
[dependencies.raps-dm]
version = "4.15.0"
[dependencies.raps-kernel]
version = "4.15.0"
[dependencies.raps-oss]
version = "4.15.0"
[dependencies.raps-reality]
version = "4.15.0"
[dependencies.raps-webhooks]
version = "4.15.0"
[dependencies.ratatui]
version = "0.29"
optional = true
[dependencies.reedline]
version = "0.45"
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"stream",
"multipart",
"rustls-tls",
]
default-features = false
[dependencies.rmcp]
version = "0.12"
features = [
"server",
"transport-io",
"schemars",
]
[dependencies.schemars]
version = "1.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.shlex]
version = "1.3"
[dependencies.tempfile]
version = "3.14"
[dependencies.tokio]
version = "1.49"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["io"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
"registry",
"json",
]
[dependencies.url]
version = "2.5"
[dependencies.urlencoding]
version = "2.1"
[dependencies.uuid]
version = "1.6"
features = [
"v4",
"serde",
]
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.dotenvy]
version = "0.15"
[dev-dependencies.predicates]
version = "3.1"