[package]
edition = "2021"
rust-version = "1.74"
name = "digit-cli"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A finger protocol client (RFC 1288 / RFC 742)"
homepage = "https://github.com/mcroydon/digit"
readme = "README.md"
keywords = [
"finger",
"rfc1288",
"rfc742",
"cli",
"networking",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "MIT"
repository = "https://github.com/mcroydon/digit"
[lib]
name = "digit"
path = "src/lib.rs"
[[bin]]
name = "digit"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.thiserror]
version = "2"