-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (32 loc) · 904 Bytes
/
Cargo.toml
File metadata and controls
33 lines (32 loc) · 904 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
[package]
name = "md-server"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = { version = "0.8", features = ["multipart"] }
serde_json = "1"
form_urlencoded = "1"
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["io"] }
maud = "0.26"
markdown = "1"
serde = { version = "1", features = ["derive"] }
serde_yml = "0.0"
clap = { version = "4", features = ["derive", "env"] }
tower-http = { version = "0.6", features = ["trace", "catch-panic"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
mime_guess = "2"
thiserror = "2"
chrono = "0.4"
anyhow = "1"
percent-encoding = "2"
rand = "0.9"
dotenvy = "0.15"
sqlx = { version = "0.8", features = ["sqlite", "runtime-tokio"] }
argon2 = "0.5"
rand_core = { version = "0.6", features = ["getrandom"] }
sha2 = "0.10"
ratatui = "0.28"
crossterm = "0.28"
woothee = "0.13"