-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathCargo.toml
33 lines (30 loc) · 1.07 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 = "cases"
version = "0.0.6"
edition = "2021"
[dependencies]
askama = { version = "0.12", default-features = false }
axum = { version = "0.7", features = ["http2", "query", "tokio", "http1"], default-features = false }
basic-toml = "*"
bincode = "1.3.3"
csv = "1"
fjall = { git = "https://github.com/fjall-rs/fjall", branch = "casetest", default-features = false, features = ["bloom", "single_writer_tx", "miniz"] }
indexmap = "2"
serde = { version = "1", features = ["derive"] }
stop-words = "0.8.0"
tantivy = "0.22.0"
tantivy-jieba = "0.11.0"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tower = "0.5.1"
tower-http = { version = "0.6.1", features = ["compression-zstd", "trace", "timeout"] }
tracing = { version = "0.1", features = ["release_max_level_info", "max_level_info"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
zip = { version = "2.2.0", default-features = false, features = ["deflate"] }
[dev-dependencies]
jieba-rs = "0.7.0"
[profile.release]
lto = "fat"
strip = true
codegen-units = 1
panic = "abort"
rpath = false