-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
27 lines (24 loc) · 853 Bytes
/
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
[package]
name = "rlifesrc"
version = "0.6.1"
authors = ["AlephAlpha <[email protected]>"]
edition = "2021"
description = "A Game of Life pattern searcher."
homepage = "https://github.com/AlephAlpha/rlifesrc/tree/master/tui"
repository = "https://github.com/AlephAlpha/rlifesrc"
license = "MIT"
readme = "README_en.md"
keywords = ["game-of-life", "cellular-automata"]
[dependencies]
clap = { version = "4.4.6", features = ["cargo"] }
crossterm = { version = "0.27.0", features = ["event-stream"], optional = true }
futures-executor = { version = "0.3.28", optional = true }
futures-util = { version = "0.3.28", optional = true }
rlifesrc-lib = { path = "../lib/", version = "0.6.1" }
serde_json = "1.0.107"
serde_yaml = "0.9.25"
toml = "0.8.2"
[features]
default = ["tui"]
# Enables TUI.
tui = ["crossterm", "futures-executor", "futures-util"]