-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (48 loc) · 1.06 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
[package]
name = "andiskaz"
version = "0.3.0"
authors = ["brunoczim <[email protected]>"]
edition = "2018"
description = "A convenience library for writing games and other apps in TUI"
readme = "README.md"
repository = "https://github.com/brunoczim/andiskaz"
license-file = "LICENSE"
keywords = ["terminal", "tui", "double-buffering"]
categories = ["game-development", "asynchronous"]
[features]
default = []
plane = ["gardiz"]
clipboard = ["cli-clipboard", "anyhow"]
[dependencies]
unicode-segmentation = "^1.10.1"
lazy_static = "^1.4.0"
crossterm = "^0.27.0"
futures = "^0.3.7"
[dependencies.gardiz]
git = "https://github.com/brunoczim/gardiz"
branch = "main"
optional = true
[dependencies.cli-clipboard]
version = "^0.4.0"
optional = true
[dependencies.anyhow]
version = "^1.0"
optional = true
[dependencies.tokio]
version = "^1.33.0"
features = [
"macros",
"io-util",
"io-std",
"sync",
"rt",
"rt-multi-thread",
"fs",
"time"
]
[dev-dependencies]
rand = "^0.8.5"
backtrace = "^0.3.69"
[[example]]
name = "snakegame"
required-features = ["plane"]