-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (39 loc) · 942 Bytes
/
Cargo.toml
File metadata and controls
48 lines (39 loc) · 942 Bytes
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
39
40
41
42
43
44
45
46
47
48
[workspace]
members = [
"doredore-core",
"doredore-py",
"doredore-js",
"doredore-rb",
"doredore-server",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["doredore Contributors"]
license = "MIT"
repository = "https://github.com/0809android/doredore"
[workspace.dependencies]
# データベース
rusqlite = { version = "0.29", features = ["bundled"] }
# Embedding
fastembed = "4.9.1"
# Web サーバー
axum = "0.7"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.6", features = ["cors", "fs"] }
# シリアライゼーション
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# エラーハンドリング
anyhow = "1.0"
thiserror = "1.0"
# その他
csv = "1.3"
# Python バインディング
pyo3 = { version = "0.22", features = ["extension-module"] }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true