icmp-socket/Cargo.toml

14 lines
401 B
TOML
Raw Normal View History

2021-01-08 15:16:02 -05:00
[package]
2021-01-12 21:10:11 -05:00
name = "icmp-socket"
2021-01-31 09:18:38 -05:00
description = "ICMP sockets for both IPv4 and IPv6"
2021-01-08 15:16:02 -05:00
version = "0.1.0"
2021-01-31 09:18:38 -05:00
repository = "https://github.com/zaphar/icmp-socket"
2021-01-08 15:16:02 -05:00
authors = ["Jeremy Wall <jeremy@marzhillstudios.com>"]
edition = "2018"
2021-01-31 09:18:38 -05:00
license = "Apache-2.0"
2021-01-08 15:16:02 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
socket2 = "0.3.19"
2021-01-12 21:10:11 -05:00
byteorder = "1.3.4"