summaryrefslogtreecommitdiffstats
path: root/gping/Cargo.toml
blob: 9e1eb54d25fd697b9f65850dd8de614bd8c07287 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "gping"
version = "1.16.1"
authors = ["Tom Forbes <tom@tomforb.es>"]
edition = "2018"
repository = "https://github.com/orf/gping"
license = "MIT"
description = "Ping, but with a graph."
build = "build.rs"
readme = "../readme.md"

[dependencies]
pinger = { version = "^1.1.1", path = "../pinger" }
tui = { package = "ratatui", version = "0.26.0", features = ["crossterm"], default_features = false }
crossterm = "0.27.0"
anyhow = "1.0.81"
dns-lookup = "2.0.0"
chrono = "0.4.37"
itertools = "0.12.1"
shadow-rs = { version = "0.27.1", default_features = false }
const_format = "0.2.32"
clap = { version = "4.5.4", features = ["derive"] }

[build-dependencies]
shadow-rs = { version = "0.27.1", default_features = false }