[package]
edition = "2021"
name = "sova-fs"
version = "0.1.0"
authors = ["Pavel Kuzmin <Virus191288@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local filesystem plugin for Sova (jail root, async CRUD, walk)"
homepage = "https://s00d.github.io/sova/"
documentation = "https://docs.rs/sova-fs"
readme = "README.md"
keywords = [
"http",
"web",
"framework",
"async",
"filesystem",
]
categories = [
"web-programming::http-server",
"filesystem",
]
license = "MIT"
repository = "https://github.com/s00d/sova"
[lib]
name = "sova_fs"
path = "src/lib.rs"
[[test]]
name = "fs"
path = "tests/fs.rs"
[dependencies.sova-core]
version = "0.1.12"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"fs",
"io-util",
"sync",
"rt",
"macros",
]
[dev-dependencies.sova-core]
version = "0.1.12"
features = ["testing"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]