-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 1.19 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
[package]
name = "kweepeer"
description = "A generic webservice for interactive query expansion, expansion is provided via various modules"
version = "0.1.0"
edition = "2021"
authors = ["Maarten van Gompel <[email protected]>"]
include = ["src/*", "LICENSE", "README.md", "test/*","!test/int*"]
license = "AGPL-3.0-only"
readme = "README.md"
repository = "https://github.com/knaw-huc/kweepeer"
keywords = [ "text-processing", "query expansion", "search" ]
[dependencies]
axum = "0.8.1"
clap = { version = "4.5.20", features = ["derive"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.133"
tokio = { version = "1.41.0", features = ["macros","rt-multi-thread","signal"] }
tower = "0.5.1"
tower-http = { version = "0.6.1", features= ["trace", "normalize-path"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
utoipa = { version = "5.3.1", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "9.0", features = ["axum", "vendored"] }
logos = "0.15.0"
toml = "0.8.20"
analiticcl = { version = "0.4.7", optional = true }
fst = { version = "0.4.7", features = ["levenshtein"], optional = true }
[features]
default = ["analiticcl","fst"]
analiticcl = ["dep:analiticcl"]
fst = ["dep:fst"]