[package]
edition = "2024"
name = "versatile-dataloader"
version = "0.1.1"
authors = [
"sunli <scott_s829@163.com>",
"Koxiaet",
"Jonatan Ziegler <jonatan@zieglershome.de>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An async data loader for Rust."
readme = "README.md"
keywords = [
"async",
"dataloader",
"cache",
]
categories = [
"asynchronous",
"caching",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/worldofjoni/versatile-dataloader"
[features]
boxed-trait = []
tracing = ["dep:tracing"]
[lib]
name = "versatile_dataloader"
path = "src/lib.rs"
[dependencies.fnv]
version = "1.0.7"
[dependencies.futures-channel]
version = "0.3.31"
[dependencies.futures-timer]
version = "3.0.3"
[dependencies.futures-util]
version = "0.3.31"
[dependencies.lru]
version = "0.14.0"
[dependencies.tokio]
version = "1.45.0"
features = [
"macros",
"test-util",
]
[dependencies.tracing]
version = "0.1.41"
optional = true
[dev-dependencies.tokio]
version = "1.43.0"