[package]
edition = "2024"
rust-version = "1.91"
name = "modelpipe-cli"
version = "0.3.0"
authors = ["mmogr"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI for modelpipe: serve and connect commands"
readme = "README.md"
keywords = [
"p2p",
"iroh",
"llm",
"openai",
"proxy",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "MIT"
repository = "https://github.com/mmogr/modelpipe"
[[bin]]
name = "modelpipe"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.modelpipe]
version = "0.3.0"
[dependencies.qrcode]
version = "0.14"
default-features = false
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"signal",
]
default-features = false
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"std",
"fmt",
"registry",
]
default-features = false
[dev-dependencies.tracing]
version = "0.1"
default-features = false
[lints.clippy]
collapsible_if = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
redundant_pub_crate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "deny"
unreachable_pub = "deny"
unsafe_code = "deny"