[package] authors = ["cyqsimon"] categories = ["network-programming", "command-line-utilities"] description = "Quickly lookup what a port is used for." edition = "2021" repository = "https://github.com/cyqsimon/what-the-port" keywords = ["cli", "tool", "lookup", "port"] license = "AGPL-3.0-or-later" name = "what-the-port" rust-version = "1.75.0" version = "0.4.0" [[bin]] name = "wtp" path = "src/main.rs" [dependencies] clap = { version = "4.5.19", features = ["derive", "cargo"] } clap-verbosity-flag = "2.2.2" color-eyre = "0.6.3" derive_more = { version = "1.0.0", features = ["display", "from"] } directories = "5.0.1" ego-tree = "0.6.3" itertools = "0.13.0" log = "0.4.22" once_cell = "1.20.1" regex = "1.11.0" reqwest = { version = "0.12.8", features = ["json"] } scraper = "0.20.0" serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.128" serde_with = "3.10.0" simplelog = "0.12.2" strum = { version = "0.26.3", features = ["derive"] } tokio = { version = "1.40.0", features = ["full"] } yansi = { version = "1.0.1", features = [ "detect-env", "detect-tty", "hyperlink", ] }