-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (20 loc) · 686 Bytes
/
Cargo.toml
File metadata and controls
21 lines (20 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "textpod"
version = "0.1.7"
edition = "2021"
license-file = "LICENSE"
description = "Local, web-based notetaking app inspired by 'One Big Text File' idea."
homepage = "https://github.com/freetonik/textpod"
repository = "https://github.com/freetonik/textpod"
readme = "README.md"
[dependencies]
axum = { version = "0.7.7", features = ["multipart"] }
tokio = { version = "1.41.1", features = ["full", "signal"] }
tower-http = { version = "0.6.1", features = ["fs"] }
comrak = "0.29"
serde = { version = "1.0.215", features = ["derive"] }
chrono = "0.4.38"
clap = { version = "4.4", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = "0.3.18"
base64 = "0.22.1"