surrealdb-core 3.2.0

A scalable, distributed, collaborative, document-graph database, for the realtime web
Documentation
#![cfg(feature = "scripting")]
// rquickjs `#[js::methods]`, `#[qjs(constructor)]`, and `FromJs` glue require owned
// `Ctx`/`Value`/`String` parameters in user-written signatures, so this lint fires
// throughout the module by design.
#![allow(clippy::needless_pass_by_value)]

pub use main::run;

mod classes;
mod error;
mod from;
mod globals;
mod into;
mod main;
mod modules;

#[cfg(feature = "http")]
mod fetch;
#[cfg(not(feature = "http"))]
mod fetch_stub;
#[cfg(not(feature = "http"))]
use self::fetch_stub as fetch;

#[cfg(test)]
mod tests;