actix-fs/Cargo.toml

25 lines
621 B
TOML
Raw Normal View History

2020-05-25 19:47:10 +00:00
[package]
name = "actix-fs"
2020-05-25 19:50:32 +00:00
description = "Asynchronous filesystem operations for actix-based systems"
2020-05-25 19:47:10 +00:00
version = "0.1.0"
authors = ["asonix <asonix@asonix.dog>"]
2020-06-19 17:43:21 +00:00
license = "AGPL-3.0"
2020-05-25 19:50:32 +00:00
readme = "README.md"
repository = "https://git.asonix.dog/asonix/actix-fs"
2020-06-19 18:51:06 +00:00
documentation = "https://actix-fs.asonix.dog"
2020-05-25 19:50:32 +00:00
keywords = ["actix", "fs", "filesystem"]
2020-05-25 19:47:10 +00:00
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-threadpool = "0.3.2"
bytes = "0.5.4"
futures = "0.3.5"
2020-09-14 01:38:45 +00:00
log = "0.4"
2020-05-25 19:47:10 +00:00
thiserror = "1.0"
[dev-dependencies]
actix-rt = "1.1.1"
anyhow = "1.0"