[package]
edition = "2021"
name = "net-cli"
version = "0.27.0-beta.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified `net-mesh` command-line tool for the Net mesh"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/ai-2070/net"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/cli-v{ version }/{ name }-v{ version }-{ target }.{ archive-suffix }"
bin-dir = "{ name }-v{ version }-{ target }/net-mesh{ binary-ext }"
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
[[bin]]
name = "net-mesh"
path = "src/main.rs"
[[test]]
name = "aggregator_remote"
path = "tests/aggregator_remote.rs"
[[test]]
name = "cap_announce"
path = "tests/cap_announce.rs"
[[test]]
name = "dry_run"
path = "tests/dry_run.rs"
[[test]]
name = "exit_codes"
path = "tests/exit_codes.rs"
[[test]]
name = "help"
path = "tests/help.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4"
[dependencies.clap_mangen]
version = "0.3"
[dependencies.comfy-table]
version = "7"
[dependencies.dirs]
version = "6"
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.net-sdk]
version = "0.27.0-beta.1"
features = [
"net",
"nat-traversal",
"cortex",
"compute",
"groups",
"meshos",
"deck",
"dataforts",
"meshdb",
"aggregator",
]
default-features = false
package = "net-mesh-sdk"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"signal",
"fs",
]
[dependencies.toml]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"test-util",
]