-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (42 loc) · 1.12 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
[package]
name = "asterion"
version = "0.3.0"
edition = "2021"
authors = ["Alessandro Ricottone <ricott2@gmail.com>"]
license = "GPL-3.0-or-later"
description = "Find your way out of a dangeroussh labyrinth"
readme = "README.md"
homepage = "https://github.com/ricott1/minotaur"
repository = "https://github.com/ricott1/minotaur"
keywords = ["cli", "dungeon", "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.91"
clap = { version = "4.5.28", features = ["derive"] }
crossterm = "0.28.1"
directories = "6.0.0"
futures = "0.3.30"
image = "0.25.4"
include_dir = "0.7.3"
itertools = "0.14.0"
log = "0.4.25"
log4rs = "1.3.0"
rand = "0.8.5"
rand_chacha = "0.3.1"
ratatui = { version = "0.29.0", features = ["unstable-backend-writer"] }
russh = "0.50.2"
strum = "0.27.0"
strum_macros = "0.27.0"
tokio = "1.43.0"
tokio-util = "0.7.13"
uuid = { version = "1.13.1", features = ["v4", "serde"] }