-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 853 Bytes
/
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
34
35
[workspace]
members = ["lyre", "melody", "verse"]
[package]
name = "orpheus"
version = "0.1.0"
edition = "2021"
include = ["generated", "content", "web"]
[dependencies]
axum = { version = "0.7.6", features = ["macros"] }
axum-htmx = { version = "0.6.0", features = ["serde"] }
axum-extra = { version = "0.9.3", features = ["query"] }
tokio = { version = "1.43.0", features = ["full"] }
tower = "0.5.2"
tower-http = { version = "0.6.2", features = [
"fs",
"trace",
"compression-br",
"compression-deflate",
"compression-gzip",
"compression-zstd",
"normalize-path",
] }
tower-livereload = "0.9.6"
serde = { version = "1.0.217" }
serde_yaml = "0.9.34"
serde_html_form = "0.2.7"
serde_json = "1.0.138"
http-body-util = "0.1.2"
maud = { version = "0.26.0", features = ["axum"] }
verse = { path = "./verse" }
tantivy = "0.22.0"