-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
79 lines (75 loc) · 2.03 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "rebels"
version = "1.0.28"
edition = "2021"
authors = ["Alessandro Ricottone <[email protected]>"]
license = "GPL-3.0-or-later"
description = "Anarchic spacepirates playing basketball in your terminal"
readme = "README.md"
homepage = "https://github.com/ricott1/rebels-in-the-sky"
repository = "https://github.com/ricott1/rebels-in-the-sky"
keywords = ["cli", "pirates", "rebels", "game"]
categories = ["games"]
[profile.release]
strip = true
opt-level = 3
lto = true
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies, but not for our code:
[profile.dev.package."*"]
opt-level = 3
[dependencies]
anyhow = "1.0.93"
async-trait = "0.1.83"
chrono = "0.4.39"
clap = { version = "4.5.21", features = ["derive"] }
crossterm = "0.28.1"
directories = "6.0.0"
ed25519-dalek = "2.1.1"
flate2 = { version = "1.0.35", features = ["zlib-ng"], default-features = false }
futures = "0.3.30"
gif = "0.13.1"
glam = "0.29.2"
image = "0.25.5"
imageproc = "0.25.0"
include_dir = "0.7.4"
itertools = "0.14.0"
libp2p = { version = "0.55.0", features = [
"dns",
"gossipsub",
"macros",
"mdns",
"noise",
"ping",
"serde",
"tcp",
"tokio",
"yamux",
] }
libp2p-swarm-test = "0.5.0"
log = "0.4.25"
log4rs = { version = "1.3.0", features = ["file_appender", "pattern_encoder"] }
once_cell = "1.20.2"
rand = "0.8.5"
rand_chacha = "0.3.1"
rand_distr = "0.4.3"
ratatui = { version = "0.29.0", features = ["unstable-backend-writer"] }
rodio = "0.20.1"
russh = "0.49.0"
russh-keys = "0.49.0"
serde = { version = "1.0.216", features = ["derive", "default"] }
serde_json = "1.0.133"
serde_repr = "0.1.19"
sha2 = "0.10.8"
stream-download = { version = "0.14.0", features = ["reqwest-rustls"] }
strum = { version = "0.26.3", features = ["derive"] }
strum_macros = "0.26.4"
tokio = { version = "1.41.1", features = ["full"] }
tokio-util = "0.7.12"
tui-textarea = "0.7.0"
unicode-width = "0.2.0"
url = "2.5.4"
uuid = { version = "1.12.0", features = ["v4", "serde"] }
void = "1.0.2"