[package]
edition = "2021"
rust-version = "1.88"
name = "synaptic-embeddings"
version = "0.2.7"
authors = ["Synaptic Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embeddings trait with Fake and CacheBacked providers"
homepage = "https://dnw3.github.io/synaptic/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/dnw3/synaptic"
[lib]
name = "synaptic_embeddings"
path = "src/lib.rs"
[[test]]
name = "cached"
path = "tests/cached.rs"
[[test]]
name = "fake"
path = "tests/fake.rs"
[[test]]
name = "fake_edge"
path = "tests/fake_edge.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.synaptic-core]
version = "0.2"
[dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]
[dev-dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]