forgedb 0.3.0

ForgeDB — an application database generator. Compiles a declarative .forge schema into tailored Rust database code, a TypeScript SDK, and a REST API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// The ForgeDB language server binary.
//
// Compiled only when the root crate's non-default `lsp` feature is enabled
// (`required-features = ["lsp"]`), so a lean `cargo install forgedb` never pulls
// in the async LSP stack (`tokio` / `tower-lsp`). Release archives build with
// `--features lsp`, shipping this binary next to `forgedb`; `forgedb lsp`
// resolves and hands off to it (see `src/commands/lsp.rs`).
//
// Stays a plain synchronous `fn main` — `forgedb_lsp_server::run()` owns the
// Tokio runtime internally.
fn main() {
    forgedb_lsp_server::run();
}