-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathCargo.toml
57 lines (48 loc) · 1.17 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
56
57
[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 OR Apache-2.0"
repository = "https://github.com/amethyst/laminar"
autobenches = false
edition = "2021"
[dependencies]
byteorder = "1.5.0"
crossbeam-channel = "0.5"
lazy_static = "1.4"
log = "0.4"
rand = "0.8"
rand_pcg = "0.3"
clap = { version = "4.4", optional = true }
env_logger = { version = "0.10", optional = true }
[dev-dependencies]
bincode = "1.3.1"
criterion = "0.5"
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"]
[lib]
doctest = false