[package]
edition = "2024"
rust-version = "1.85"
name = "fslite-cli"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line client for fslite: manages named filesystems/workspaces and runs fslite-command verbs against a local database, in-memory database, or remote fslite-server."
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"
[[bin]]
name = "fslite"
path = "src/main.rs"
[[test]]
name = "e2e_local"
path = "tests/e2e_local.rs"
[[test]]
name = "e2e_named_context"
path = "tests/e2e_named_context.rs"
[[test]]
name = "e2e_remote"
path = "tests/e2e_remote.rs"
[[test]]
name = "e2e_repl"
path = "tests/e2e_repl.rs"
[[test]]
name = "structural_guards"
path = "tests/structural_guards.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.fslite-command]
version = "0.1.0"
[dependencies.fslite-core]
version = "0.1.0"
[dependencies.fslite-sqlite]
version = "0.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"full",
]
[dev-dependencies.axum]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"