-
Notifications
You must be signed in to change notification settings - Fork 345
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (30 loc) · 779 Bytes
/
Cargo.toml
File metadata and controls
37 lines (30 loc) · 779 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
[package]
name = "ruvector-router-ffi"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme = "README.md"
description = "NAPI-RS bindings for ruvector-router-core vector database"
[lib]
crate-type = ["cdylib"]
[dependencies]
ruvector-router-core = { version = "2.0", path = "../ruvector-router-core" }
# NAPI-RS dependencies
napi = { workspace = true }
napi-derive = { workspace = true }
# Workspace dependencies
serde = { workspace = true }
serde_json = { workspace = true }
anyhow = { workspace = true }
tokio = { workspace = true }
# Additional dependencies
chrono = "0.4"
[build-dependencies]
napi-build = "2.1"
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
strip = true