zvec 0.1.0

Rust bindings to zvec, an in-process vector database by Alibaba.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.75"
name = "zvec"
version = "0.1.0"
build = "build.rs"
links = "zvec_c_api"
exclude = [
    "/.github",
    "/target",
    "/zvec-derive/target",
    "/CHANGELOG.md",
    "/PUBLISHING.md",
    "/scripts",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust bindings to zvec, an in-process vector database by Alibaba."
homepage = "https://github.com/oly-wan-kenobi/zvec-rs"
documentation = "https://docs.rs/zvec"
readme = "README.md"
keywords = [
    "vector",
    "database",
    "embedding",
    "ann",
    "ffi",
]
categories = [
    "api-bindings",
    "database",
]
license = "Apache-2.0"
repository = "https://github.com/oly-wan-kenobi/zvec-rs"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
bundled = [
    "dep:ureq",
    "dep:zip",
    "dep:sha2",
]
default = []
derive = ["dep:zvec-derive"]
half = ["dep:half"]
pkg-config = ["dep:pkg-config"]
serde-json = ["dep:serde_json"]
tokio = ["dep:tokio"]

[lib]
name = "zvec"
path = "src/lib.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "hybrid_search"
path = "examples/hybrid_search.rs"

[[example]]
name = "json_ingest"
path = "examples/json_ingest.rs"
required-features = ["serde-json"]

[[example]]
name = "semantic_search"
path = "examples/semantic_search.rs"

[[example]]
name = "version"
path = "examples/version.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[dependencies.half]
version = "2"
optional = true

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.tokio]
version = "1"
features = ["rt"]
optional = true
default-features = false

[dependencies.zvec-derive]
version = "0.1"
optional = true

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
]
default-features = false

[build-dependencies.bindgen]
version = "0.70"

[build-dependencies.pkg-config]
version = "0.3"
optional = true

[build-dependencies.sha2]
version = "0.10"
optional = true

[build-dependencies.ureq]
version = "2.10"
features = ["tls"]
optional = true
default-features = false

[build-dependencies.zip]
version = "2.2"
features = ["deflate"]
optional = true
default-features = false