[package]
edition = "2024"
rust-version = "1.85"
name = "fslite-server"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP adapter exposing fslite-core's FileSystem trait as a resource-oriented REST API, gated by a pluggable AuthProvider."
homepage = "https://fslite.rusty.yachts"
documentation = "https://docs.rs/fslite-core"
readme = "README.md"
keywords = [
"filesystem",
"sqlite",
"virtual-filesystem",
"async",
"workspace",
]
categories = [
"database",
"filesystem",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/seanrobmerriam/fslite"
[lib]
name = "fslite_server"
path = "src/lib.rs"
[[bin]]
name = "fslite-server"
path = "src/main.rs"
[[test]]
name = "auth"
path = "tests/auth.rs"
[[test]]
name = "batch"
path = "tests/batch.rs"
[[test]]
name = "content"
path = "tests/content.rs"
[[test]]
name = "contract"
path = "tests/contract.rs"
[[test]]
name = "directories"
path = "tests/directories.rs"
[[test]]
name = "error_envelope"
path = "tests/error_envelope.rs"
[[test]]
name = "health"
path = "tests/health.rs"
[[test]]
name = "node_actions"
path = "tests/node_actions.rs"
[[test]]
name = "nodes"
path = "tests/nodes.rs"
[[test]]
name = "range"
path = "tests/range.rs"
[[test]]
name = "readiness"
path = "tests/readiness.rs"
[[test]]
name = "search"
path = "tests/search.rs"
[[test]]
name = "tracing"
path = "tests/tracing.rs"
[[test]]
name = "trash"
path = "tests/trash.rs"
[[test]]
name = "workspaces"
path = "tests/workspaces.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
[dependencies.base64]
version = "0.22"
[dependencies.bytes]
version = "1"
[dependencies.fslite-core]
version = "0.1.0"
[dependencies.fslite-sqlite]
version = "0.1.0"
[dependencies.futures]
version = "0.3"
[dependencies.http-body-util]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"full",
]
[dependencies.tower]
version = "0.5"
[dependencies.tower-http]
version = "0.6"
features = ["trace"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = [
"serde",
"v7",
]
[dev-dependencies]
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"