Parakeet is a Rust-based Bluesky AppView aiming to implement most of the functionality required to support the Bluesky client
at main 649 B view raw
1[package] 2name = "dataloader" 3version = "0.18.0" 4edition = "2021" 5authors = ["cksac <cs.cksac@gmail.com>", "Mia"] 6description = "Rust implementation of Facebook's DataLoader using async-await." 7keywords = ["batcher", "dataloader", "cache"] 8categories = ["asynchronous", "caching"] 9license = "MIT/Apache-2.0" 10readme = "README.md" 11repository = "https://github.com/cksac/dataloader-rs" 12homepage = "https://github.com/cksac/dataloader-rs" 13documentation = "https://docs.rs/dataloader" 14 15[badges] 16travis-ci = { repository = "/cksac/dataloader-rs" } 17 18[dependencies] 19tokio = { version = "1", features = [ "sync", "rt" ] } 20 21[dev-dependencies] 22futures = "0.3"