-
Notifications
You must be signed in to change notification settings - Fork 345
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 745 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 745 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
[package]
name = "rvf-runtime"
version = "0.2.0"
edition = "2021"
description = "RuVector Format runtime -- RvfStore API, compaction, and streaming I/O"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ruvnet/ruvector"
homepage = "https://github.com/ruvnet/ruvector"
readme = "README.md"
categories = ["database-implementations", "data-structures"]
keywords = ["vector", "database", "storage", "compaction", "rvf"]
rust-version = "1.87"
[features]
default = ["std"]
std = []
wasm = []
qr = []
ed25519 = ["rvf-types/ed25519"]
[dependencies]
rvf-types = { version = "0.2.0", path = "../rvf-types", features = ["std"] }
[dev-dependencies]
tempfile = "3"
rand = "0.8"
[[example]]
name = "qr_seed_encode"
required-features = ["qr"]