13 lines
394 B
TOML
13 lines
394 B
TOML
[package]
|
|
name = "hptp-send"
|
|
description = "Head Pat Transport Protocol, Sending Program"
|
|
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]
|
|
hptp = { path = "../hptp" }
|
|
tokio = { version = "0.2.*", features = ["rt-core", "udp", "time", "macros"] }
|
|
thiserror = "*" |