shohei 0.1.0

Next-generation DNS diagnostic CLI: visualize DNSSEC chain-of-trust, DoH/DoT, and iterative resolution paths in the terminal
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.75"
name = "shohei"
version = "0.1.0"
authors = ["kent-tokyo <kent-tokyo@users.noreply.github.com>"]
build = false
exclude = [
    ".github",
    "tests/fixtures",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Next-generation DNS diagnostic CLI: visualize DNSSEC chain-of-trust, DoH/DoT, and iterative resolution paths in the terminal"
homepage = "https://github.com/kent-tokyo/shohei"
documentation = "https://docs.rs/shohei"
readme = "README.md"
keywords = [
    "dns",
    "dnssec",
    "cli",
    "network",
    "doh",
]
categories = [
    "command-line-utilities",
    "network-programming",
]
license = "MIT"
repository = "https://github.com/kent-tokyo/shohei"

[features]
default = []
tui = [
    "dep:ratatui",
    "dep:crossterm",
]

[lib]
name = "shohei"
path = "src/lib.rs"

[[bin]]
name = "shohei"
path = "src/main.rs"

[[test]]
name = "integration_basic"
path = "tests/integration_basic.rs"

[[test]]
name = "integration_dnssec"
path = "tests/integration_dnssec.rs"

[[test]]
name = "integration_trace"
path = "tests/integration_trace.rs"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.comfy-table]
version = "7"

[dependencies.crossterm]
version = "0.29"
optional = true

[dependencies.hickory-proto]
version = "0.26"
features = ["dnssec-ring"]

[dependencies.hickory-resolver]
version = "0.26"
features = [
    "dnssec-ring",
    "https-ring",
    "tls-ring",
    "tokio",
    "webpki-roots",
    "system-config",
]

[dependencies.indicatif]
version = "0.18"

[dependencies.owo-colors]
version = "4"
features = ["supports-colors"]

[dependencies.ratatui]
version = "0.29"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "time",
    "net",
    "sync",
]

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true