[package]
edition = "2024"
name = "scp2p-cli"
version = "0.3.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interactive command-line client for the SCP2P peer-to-peer network"
readme = "README.md"
keywords = [
"p2p",
"cli",
"content-sharing",
"scp2p",
]
categories = [
"network-programming",
"command-line-utilities",
]
license = "MPL-2.0"
repository = "https://github.com/techartdev/scp2p"
resolver = "2"
[[bin]]
name = "scp2p-cli"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.ed25519-dalek]
version = "2"
features = [
"rand_core",
"pkcs8",
]
[dependencies.hex]
version = "0.4"
[dependencies.indicatif]
version = "0.17"
[dependencies.inquire]
version = "0.7"
[dependencies.rand]
version = "0.8"
[dependencies.scp2p-core]
version = "0.3.2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"io-util",
"net",
"signal",
"fs",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]