oneiriq-surql 0.2.2

Code-first database toolkit for SurrealDB - schema definitions, migrations, query building, and typed CRUD (Rust port of oneiriq-surql). Published as the `oneiriq-surql` crate; imported as `use surql::...`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `surql` CLI entry point.
//!
//! Thin binary wrapper: every command lives in [`surql::cli`].

#![warn(clippy::all)]
#![deny(missing_docs)]

use std::process::ExitCode;

fn main() -> ExitCode {
    surql::cli::run()
}