[package]
edition = "2021"
rust-version = "1.74"
name = "seehandshake"
version = "1.0.5"
authors = ["SeeHandshake contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Visualize TLS handshakes in your terminal, in real time."
homepage = "https://github.com/AustinJAkerley/SeeHandshake"
documentation = "https://docs.rs/seehandshake"
readme = "README.md"
keywords = [
"tls",
"network",
"handshake",
"tui",
"security",
]
categories = [
"command-line-utilities",
"network-programming",
"visualization",
]
license = "MIT"
repository = "https://github.com/AustinJAkerley/SeeHandshake"
[package.metadata.deb]
section = "net"
priority = "optional"
maintainer = "Austin Akerley <austin.akerley+SeeHandshake@outlook.com>"
depends = "$auto"
extended-description = "seehandshake is a passive TLS handshake observer for the terminal. It captures packets on a chosen network interface, reassembles TLS records off the TCP stream, and renders each connection in a three-panel Ratatui interface with an optional educational overlay."
assets = [
[
"target/release/seehandshake",
"usr/bin/",
"755",
],
[
"README.md",
"usr/share/doc/seehandshake/README",
"644",
],
[
"LICENSE",
"usr/share/doc/seehandshake/copyright",
"644",
],
[
"CHANGELOG.md",
"usr/share/doc/seehandshake/changelog",
"644",
],
]
[lib]
name = "seehandshake"
path = "src/lib.rs"
[[bin]]
name = "seehandshake"
path = "src/main.rs"
[[example]]
name = "parse_recorded"
path = "examples/parse_recorded.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "parser_integration"
path = "tests/parser_integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.crossterm]
version = "0.29"
[dependencies.etherparse]
version = "0.20"
[dependencies.pcap]
version = "2.4"
[dependencies.ratatui]
version = "0.30"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tls-parser]
version = "0.12"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.x509-parser]
version = "0.18"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"