embeddenator-io 0.21.0

Envelope format and serialization for Embeddenator
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"
name = "embeddenator-io"
version = "0.21.0"
authors = ["Tyler Zervas <tz-dev@vectorweight.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Envelope format and serialization for Embeddenator"
documentation = "https://docs.rs/embeddenator-io"
readme = "README.md"
keywords = [
    "embeddenator",
    "io",
    "envelope",
    "serialization",
]
categories = [
    "data-structures",
    "encoding",
]
license = "MIT"
repository = "https://github.com/tzervas/embeddenator-io"

[features]
async = [
    "tokio",
    "futures",
]
compression-lz4 = ["lz4_flex"]
compression-zstd = ["zstd"]
default = []

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

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

[dependencies.bincode]
version = ">=1.3, <2.0"

[dependencies.futures]
version = ">=0.3, <1.0"
optional = true

[dependencies.lz4_flex]
version = ">=0.11, <1.0"
optional = true

[dependencies.serde]
version = ">=1.0, <2.0"
features = ["derive"]

[dependencies.serde_json]
version = ">=1.0, <2.0"

[dependencies.tokio]
version = ">=1.0, <2.0"
features = [
    "io-util",
    "fs",
    "rt",
]
optional = true

[dependencies.zstd]
version = ">=0.13, <1.0"
optional = true

[dev-dependencies.proptest]
version = ">=1.0, <2.0"

[dev-dependencies.tempfile]
version = ">=3.8, <4.0"

[dev-dependencies.tokio]
version = ">=1.0, <2.0"
features = [
    "full",
    "test-util",
]