ockam_command 0.99.0

End-to-end encryption and mutual authentication for distributed applications.
Documentation
[package]
name = "ockam_command"
version = "0.99.0"
authors = ["Ockam Developers"]
categories = [
  "cryptography",
  "asynchronous",
  "authentication",
  "network-programming",
  "embedded",
]
default-run = "ockam"
edition = "2021"
exclude = ["tests/**"]
homepage = "https://github.com/build-trust/ockam"
keywords = [
  "ockam",
  "crypto",
  "cryptography",
  "network-programming",
  "encryption",
]
license = "Apache-2.0"
publish = true
readme = "README.md"
repository = "https://github.com/build-trust/ockam/implementations/rust/ockam/ockam_command"
rust-version = "1.58.1"
description = "End-to-end encryption and mutual authentication for distributed applications."

[package.metadata.cross.target.aarch64-unknown-linux-musl]
dockerfile = "../../../../tools/cross/Cross.Dockerfile.aarch64"

[package.metadata.cross.target.armv7-unknown-linux-musleabihf]
dockerfile = "../../../../tools/cross/Cross.Dockerfile.armv7"

[[bin]]
# You may be wondering "Why are the tests and docs disabled?". The long and
# short of it is: To avoid certain bugs in `rustdoc`, `cargo`, and other tools
# which have cases (even edge-cases) where they confuse the library (in
# `../ockam`) and the `ockam` binary (in `./src/bin/ockam.rs`). I won't
# enumerate them here, but an example: `rustdoc` will try to place the docs for
# both of these in the same path, without realizing it, which may result in one
# overwriting the other)
#
# Anyway a result, we disable them for the binary crate, which is just a single
# file (`src/bin/ockam.rs`) which contains a single function call into
# `ockam_command` itself. This way, while there are no tests/docs for the binary
# crate, it doesn't matter, since its just a shim for the `ockam_command` crate
# anyway (which does not have its tests/docs disabled)
name = "ockam"
doc = false
test = false
path = "src/bin/ockam.rs"

[dependencies]
anyhow = "1"
arboard = "3.2.1"
async-trait = "0.1"
clap = { version = "4.4.6", features = ["derive", "cargo", "wrap_help"] }
clap_complete = "4.4.2"
clap_mangen = "0.2.14"
cli-table = "0.4"
colorful = "0.2"
colors-transform = "0.2.11"
console = "0.15.7"
ctrlc = { version = "3.4.1", features = ["termination"] }
dialoguer = "0.11.0"
duct = "0.13"
flate2 = "1.0.28"
hex = "0.4"
home = "0.5"
indicatif = "0.17.7"
indoc = "2.0.4"
io-lifetimes = "2"
is-terminal = "0.4"
itertools = "0.11"
miette = { version = "5.10.0", features = ["fancy-no-backtrace"] }
minicbor = { version = "0.20.0", features = ["derive", "alloc", "half"] }
nix = "0.27"
ockam = { path = "../ockam", version = "^0.99.0", features = ["software_vault"] }
ockam_abac = { path = "../ockam_abac", version = "0.33.0", features = ["std"] }
ockam_api = { path = "../ockam_api", version = "0.42.0", features = ["std"] }
ockam_core = { path = "../ockam_core", version = "^0.90.0" }
ockam_multiaddr = { path = "../ockam_multiaddr", version = "0.33.0", features = ["std"] }
ockam_node = { path = "../ockam_node", version = "^0.95.0" }
ockam_transport_tcp = { path = "../ockam_transport_tcp", version = "^0.93.0" }
ockam_vault = { path = "../ockam_vault", version = "^0.88.0", features = ["storage"] }
ockam_vault_aws = { path = "../ockam_vault_aws", version = "^0.13.0" }
once_cell = "1.18"
open = "5.0.0"
pem-rfc7468 = { version = "0.7.0", features = ["std"] }
r3bl_rs_utils_core = "0.9.7"
r3bl_tuify = "0.1.19"
rand = "0.8"
regex = "1.10.2"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls-native-roots"] }
rustls = "0.21.8"
rustls-native-certs = "0.6.3"
serde = { version = "1", features = ["derive"] }
serde_bare = { version = "0.5.0", default-features = false, features = ["alloc"] }
serde_json = "1"
serde_yaml = "0.9"
strip-ansi-escapes = "0.2.0"
syntect = "5"
termimad = "0.25"
thiserror = "1"
time = { version = "0.3", default-features = false, features = ["std", "local-offset"] }
tiny_http = "0.12.0"
tokio = { version = "1.33.0", features = ["full"] }
tokio-retry = "0.3"
tracing = { version = "0.1", features = ["attributes"] }
tracing-appender = "0.2.2"
tracing-error = "0.2"
tracing-subscriber = { version = "0.3.17", features = ["json"] }
url = "2.4.1"
which = "5.0.0"

[dev-dependencies]
assert_cmd = "2"
ockam_macros = { path = "../ockam_macros", version = "^0.32.0" }
proptest = "1.3.1"
tempfile = "3.8.0"
time = { version = "0.3", default-features = false, features = ["std", "local-offset"] }

[features]
default = ["orchestrator"]
orchestrator = []