CS3700-project3/hptp/Cargo.toml

17 lines
424 B
TOML
Raw Normal View History

2020-02-21 21:51:19 +00:00
[package]
name = "hptp"
description = "Head Pat Transport Protocol, Core Library"
version = "0.1.0"
authors = ["iitalics", "haskal"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-03-08 04:50:41 +00:00
tokio = {version = "0.2.*", features = ["io-std", "io-util", "udp"]}
thiserror = "*"
2020-03-10 16:01:44 +00:00
chrono = "0.4.*"
2020-03-13 21:26:03 +00:00
byteorder = "1.3.*"
regex = "1.3.*"
lazy_static = "1.4.*"