-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 857 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "pong-cli"
version = "1.0.1"
authors = ["Noah Rosenzweig <[email protected]>"]
edition = "2018"
include = [
"/Cargo.toml",
"/src",
"/settings.ron",
]
description = "Play pong from the command-line!"
repository = "https://github.com/Noah2610/pong-cli"
readme = "README.md"
keywords = ["pong", "game", "cli"]
categories = ["games", "command-line-utilities"]
license = "MIT"
[dependencies]
dirs = "2.0.2"
ron = "0.5.1"
serde = "1.0.101"
[dependencies.crossterm]
version = "0.12.1"
default_features = false
features = ["input", "cursor", "screen", "serde"]
[dependencies.specs]
version = "0.15.1"
features = ["specs-derive", "shred-derive"]
[dependencies.rand]
version = "0.7.2"
optional = true
[features]
default = ["random", "style"]
random = ["rand"]
style = ["crossterm/style"]
nightly = ["specs/nightly"]