netpong/Cargo.toml

27 lines
593 B
TOML
Raw Normal View History

2024-01-18 22:28:54 +01:00
[package]
2024-01-18 23:13:18 +01:00
name = "netpong"
2024-01-18 22:28:54 +01:00
version = "0.1.0"
edition = "2021"
2024-01-18 23:13:18 +01:00
publish = true
2024-01-18 22:28:54 +01:00
authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "MIT"
2024-01-18 23:13:18 +01:00
description = "let your servers play ping pong"
2024-01-18 22:28:54 +01:00
readme = "README.md"
2024-01-18 23:13:18 +01:00
homepage = "https://git.cscherr.de/PlexSheep/netpong"
repository = "https://git.cscherr.de/PlexSheep/netpong"
keywords = ["networking"]
2024-01-18 22:28:54 +01:00
[dependencies]
2024-01-18 23:13:18 +01:00
anyhow = "1.0.79"
clap = "4.4.18"
clap-num = "1.0.2"
clap-verbosity-flag = "2.1.2"
libpt = { version = "0.3.10", features = ["net"] }
threadpool = "1.8.1"
2024-01-18 22:28:54 +01:00
2024-01-18 23:13:18 +01:00
[features]
default = ["server", "client"]
client = []
server = []