mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-08-12 10:13:06 -07:00
23 lines
455 B
TOML
23 lines
455 B
TOML
[package]
|
|
name = "vecdb_derive"
|
|
description = "Derive for vecdb"
|
|
keywords = ["vec", "disk", "data"]
|
|
categories = ["database"]
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = "3.0"
|
|
quote = "1.0"
|
|
|
|
[dev-dependencies]
|
|
vecdb = { path = "../vecdb", features = ["derive", "pco"] }
|
|
tempfile = { workspace = true }
|