-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
35 lines (32 loc) · 922 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
[package]
name = "smokey"
version = "0.4.0"
authors = ["ukmrs <murias.wstork@gmail.com>"]
edition = "2021"
description = "Comfy terminal based typing test"
license = "MIT"
repository = "https://github.com/ukmrs/smokey.git"
homepage = "https://github.com/ukmrs/smokey"
keywords = ["tui", "typing", "wpm"]
[dependencies]
bytecount = "0.6.2"
crossterm = {version = "0.22.1", features = ["event-stream"]}
clap = { version = "3.1.6", features = ["derive"] }
directories-next = "2.0.0"
fastrand = "1.4.0"
lazy_static = "1.4.0"
bimap = "0.6.1"
log = "0.4.11"
rand = "0.8.5"
simplelog = "0.9.0"
tui = { version = "0.17.0", features = ["crossterm"], default-features = false }
serde_derive = "1.0.126"
serde = "1.0.126"
toml = "0.5.8"
anyhow = "1.0.42"
# it would be nice if I could make bundled default but optional?
rusqlite = "0.27.0"
[features]
default = ["rusqlite/bundled"]
[build-dependencies]
directories-next = "2.0.0"