-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (59 loc) · 1.65 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
[package]
name = "typeracer"
version = "2.1.5"
authors = ["DarrienG <[email protected]>"]
edition = "2021"
# Packaging for crates.io
# We don't want assets included and the like
include = [
"**/*.rs",
"**/*.sql",
"Cargo.toml",
]
description = "A terminal typing game. Race to see the fastest time you can get!"
repository = "https://gitlab.com/ttyperacer/terminal-typeracer"
readme = "./README.md"
keywords = ["typing", "terminal", "termion", "games", "fun"]
license = "GPL-3.0"
[profile.release]
lto = "fat"
opt-level = 3
debug = false
debug-assertions = false
panic = 'abort'
incremental = false
overflow-checks = false
strip = "symbols"
[profile.dev]
opt-level = 0
debug = 2
lto = false
debug-assertions = true
panic = 'unwind'
incremental = true
overflow-checks = true
[dependencies]
# For rendering in the terminal
tui = { version = "0.17", default-features = false, features = ["termion"] }
termion = "1.5.6"
unicode-width = "0.1.10"
# For capturing input async and sending to callers
crossbeam-channel = "0.5.6"
# For splitting across words with full unicode compatibility
unicode-segmentation = "1.10.0"
# For lang pack and config
directories-next = "2.0.0"
toml = "0.8.8"
serde = { version = "1.0.149", features = ["derive"] }
# For downloading lang pack
git2 = { version = "0.18.1", default-features = false, features = ["https", "vendored-libgit2", "vendored-openssl"] }
# For picking random files
rand = "0.8.5"
# Command line optoins
clap = "3.2.25"
# For zipping lists
itertools = "0.12.0"
# For persisting data
rusqlite = { version = "0.28.0", features = ["bundled"] }
# For SQL migration
refinery = { version = "0.8.7", features = ["rusqlite"] }