-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 823 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 823 Bytes
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
[package]
name = "tukai"
version = "0.2.3"
edition = "2024"
authors = ["hlsxx"]
description = "The app provides an interactive typing experience with switchable templates, designed to help users improve their typing speed and accuracy."
license = "MIT"
repository = "https://github.com/hlsxx/tukai"
[dependencies]
anyhow = "1.0.100"
bincode = "1.3.3"
crossterm = { version = "0.28.1", features = ["event-stream"] }
dirs = "5.0.1"
futures = "0.3.31"
maplit = "1.0.2"
rand = "0.8.5"
ratatui = "0.29.0"
rust-embed = "8.8.0"
serde = { version = "1.0.228", features = ["derive"] }
tokio = { version = "1.48.0", features = ["full"] }
[dev-dependencies]
uuid = { version = "1.18.1", features = ["v4"] }
[profile.release]
codegen-units = 1
lto = true
[profile.dev]
opt-level = 1
[features]
windows = []
linux = []
macos = []