-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 1.1 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
[package]
name = "ouou_dictation"
version = "1.0.0"
authors = ["OuOu2021 <[email protected]>"]
edition = "2021"
description = "A command-line app for self-guided dictation practice in Chinese, Japanese, or English."
readme = "README.md"
repository = "https://github.com/OuOu2021/ouou-dictation"
license = "MIT OR Apache-2.0"
keywords = ["dictate", "dictation", "Chinese", "English", "Japanese"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = "z" # Optimize for size.
lto = true # Enable Link Time Optimization
strip = true # Automatically strip symbols from the binary.
codegen-units = 1 # Reduce Parallel Code Generation Units to Increase Optimization
[dependencies]
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0"
tts = "0.26"
clap = { version = "4", features = ["derive"] }
anyhow = "1.0"
lingua = { version = "1.6", default-features = false, features = [
"japanese",
"english",
"chinese",
] }
rand = "0.8.5"
indicatif = "0.17.9"
console = "0.15.8"