-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
33 lines (31 loc) · 1 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
[package]
name = "asciiarena"
description = "Terminal multiplayer deathmatch game"
version = "0.0.7"
authors = ["lemunozm <[email protected]>"]
edition = "2018"
readme = "README.md"
license = "Apache-2.0"
homepage = "https://github.com/lemunozm/asciiarena"
repository = "https://github.com/lemunozm/asciiarena"
keywords = ["game", "terminal", "multiplayer", "deatchmatch", "ascii"]
categories = ["command-line-utilities", "command-line-interface", "games", "gui", "network-programming"]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
message-io = "0.13.3"
bincode = "1.3.2"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
fern = { version = "0.6", features = ["colored"] }
chrono = "0.4"
colored = "2.0.0"
clap = { version = "2.33.1", features = ["wrap_help"] }
ctrlc = "3.1.5"
rand = "0.8.4"
lazy_static = "1.4.0"
itertools = "0.10.1"
crossterm = "0.20"
tui = { version = "0.15", default-features = false, features = ['crossterm'] }
derive-new = "0.5.8"
derive_builder = "0.10.2"