forked from TimonPost/laminar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (47 loc) · 1.18 KB
/
Cargo.toml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "laminar"
version = "0.5.0"
authors = [
"Lucio Franco <[email protected]>",
"Fletcher Haynes <[email protected]>",
"TimonPost <[email protected]>",
"Justin LeFebvre <[email protected]>"
]
description = "A simple semi-reliable UDP protocol for multiplayer games"
keywords = ["gamedev", "networking", "udp", "amethyst"]
categories = ["game-engines", "network-programming"]
exclude = ["examples/*", "docs/*", "benches/*"]
readme = "README.md"
license = "MIT/Apache-2.0"
repository = "https://github.com/amethyst/laminar"
autobenches = false
edition = "2018"
[dependencies]
byteorder = "1.4.3"
crc = "1.8"
crossbeam-channel = "0.5"
lazy_static = "1.4"
log = "0.4"
rand = "0.8"
rand_pcg = "0.3"
clap = { version = "2.33", features = ["yaml"], optional = true }
env_logger = { version = "0.8", optional = true }
[dev-dependencies]
bincode = "1.3.1"
criterion = "0.3"
serde = "1.0"
serde_derive = "1.0"
quickcheck = "1.0"
quickcheck_macros = "1.0"
[features]
tester = [
"env_logger",
"clap"
]
[[bench]]
name = "packet_processing"
path = "benches/packet_processing.rs"
harness = false
[[bin]]
name = "laminar-tester"
required-features = ["tester"]