aboutsummaryrefslogtreecommitdiff
path: root/crates/tui/Cargo.toml
blob: 8798269fe5976089ce15578c41830cd6b42f84d9 (plain)
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
[package]
name = "typerpunk-tui"
version.workspace = true
edition.workspace = true
authors.workspace = true
description.workspace = true
license.workspace = true

[[bin]]
name = "typerpunk"
path = "src/main.rs"

[features]
default = ["tui"]
tui = ["typerpunk-core/tui"]
multiplayer = ["typerpunk-core/multiplayer"]

[dependencies]
typerpunk-core = { path = "../core", features = ["tui"] }
crossterm.workspace = true
ratatui.workspace = true
tokio = { workspace = true, features = ["full"] }
anyhow.workspace = true
config.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
dirs.workspace = true
rlua.workspace = true
rand.workspace = true
tokio-tungstenite = { workspace = true, optional = true }
futures-util = { workspace = true, optional = true }