-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (34 loc) · 1.08 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
34
35
36
37
38
[package]
name = "fc-search"
version = "0.2.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.80"
askama = { version = "0.12.1", features = ["with-axum"] }
askama_axum = "0.4.0"
axum = { version = "0.7.4", features = ["macros"] }
clap = { version = "4.5.1", features = ["derive"] }
console-subscriber = "0.2.0"
ctrlc = "3.4.2"
itertools = "0.12.1"
markdown = "1.0.0-alpha.16"
mime_guess = "2.0.4"
reqwest = "0.11.24"
rust-embed = { version = "8.2.0", features = ["axum", "compression"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
tantivy = "0.21.1"
tempfile = { version = "3.10.0", features = ["nightly"] }
tokio = { version = "1.36.0", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.5.1", features = ["fs"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = { version = "2.5.0", features = ["serde"] }
[profile.dev]
debug = 0
strip = "debuginfo"
[profile.profiling]
inherits = "release"
debug = true