ruvector/crates/ruvector-tiny-dancer-node/Cargo.toml
rUv 526b7adac1 chore: Update workspace version to 0.1.2 and simplify CI workflow
- Bump workspace version from 0.1.1 to 0.1.2
- Simplify build-native.yml workflow (remove duplicate graph build job)
- Update Cargo.lock with latest dependencies

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-26 17:43:34 +00:00

44 lines
890 B
TOML

[package]
name = "ruvector-tiny-dancer-node"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
readme = "README.md"
description = "Node.js bindings for Tiny Dancer neural routing via NAPI-RS"
[lib]
crate-type = ["cdylib"]
[dependencies]
ruvector-tiny-dancer-core = { version = "0.1.2", path = "../ruvector-tiny-dancer-core" }
# Node.js bindings
napi = { workspace = true }
napi-derive = { workspace = true }
# Async
tokio = { workspace = true }
# Error handling
thiserror = { workspace = true }
anyhow = { workspace = true }
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
# Time
chrono = { workspace = true }
# Concurrency
parking_lot = { workspace = true }
[build-dependencies]
napi-build = "2.1"
[profile.release]
lto = true
strip = true