-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (44 loc) · 1.1 KB
/
Copy pathCargo.toml
File metadata and controls
54 lines (44 loc) · 1.1 KB
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
[package]
name = "conjanki"
version = "0.1.0"
edition = "2024"
[dependencies]
# Web framework
axum = "0.8"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.6", features = ["fs"] }
# HTML templates
maud = { version = "0.27", features = ["axum"] }
# Database
sqlx = { version = "0.8", features = [
"runtime-tokio",
"tls-rustls",
"postgres",
"chrono",
"uuid",
"migrate",
] }
# Config
dotenvy = "0.15"
envy = "0.4"
toml = "0.8"
# HTTP client (AnkiConnect)
reqwest = { version = "0.12", features = ["json"] }
# Japanese morphological analysis
lindera = { version = "3", features = ["embed-ipadic"] }
# Japanese verb conjugation
jp_inflections = "0.1"
# Spaced repetition
fsrs = "5"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
axum-extra = { version = "0.10", features = ["form"] }
# Utilities
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4", "serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "2"
eyre = "0.6"
color-eyre = "0.6"