[package]
edition = "2024"
rust-version = "1.85"
name = "fslite-command"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A transport-independent, async virtual filesystem with a SQLite-backed persistent backend, HTTP adapter, and CLI."
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_command"
path = "src/lib.rs"
[[test]]
name = "codec"
path = "tests/codec.rs"
[[test]]
name = "help"
path = "tests/help.rs"
[[test]]
name = "lexer"
path = "tests/lexer.rs"
[[test]]
name = "local_executor"
path = "tests/local_executor.rs"
[[test]]
name = "parser"
path = "tests/parser.rs"
[[test]]
name = "parser_security"
path = "tests/parser_security.rs"
[[test]]
name = "remote_executor"
path = "tests/remote_executor.rs"
[[test]]
name = "render"
path = "tests/render.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.bytes]
version = "1"
[dependencies.fslite-core]
version = "0.1.0"
[dependencies.futures]
version = "0.3"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.axum]
version = "0.8"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"full",
]
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"