-
Notifications
You must be signed in to change notification settings - Fork 310
/
Cargo.toml
36 lines (32 loc) · 981 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
36
[workspace]
members = [
"crates/book-searcher",
"crates/book-searcher-core",
"crates/book-searcher-desktop",
"crates/tantivy-meta-tokenizer",
"crates/tools",
]
resolver = "2"
[workspace.package]
version = "1.3.0"
edition = "2021"
authors = ["The Book Searcher Authors"]
description = "Easy and fast book searcher, create and search your private library."
homepage = "https://github.com/book-searcher-org/book-searcher"
repository = "https://github.com/book-searcher-org/book-searcher"
license = "BSD-3-Clause"
exclude = [".github/", "index/", "frontend/"]
[profile.release]
strip = true
lto = true
opt-level = 3
codegen-units = 1
[workspace.dependencies]
anyhow = "1.0"
env_logger = "0.10"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_with = "3.0"
tantivy = { version = "0.21", default-features = false }
book-searcher-core = { path = "crates/book-searcher-core" }
tantivy-meta-tokenizer = { path = "crates/tantivy-meta-tokenizer" }