sqlrite-engine 0.10.0

Light version of SQLite developed with Rust. Published as `sqlrite-engine` on crates.io; import as `use sqlrite::…`.
Documentation
import { ImageResponse } from "next/og";
import { OG_CONTENT_TYPE, OG_SIZE, OgFrame } from "@/lib/og";

export const runtime = "edge";
export const alt = "SQLRite docs — getting started";
export const size = OG_SIZE;
export const contentType = OG_CONTENT_TYPE;

export default function TwitterImage() {
  return new ImageResponse(
    (
      <OgFrame
        eyebrow="docs · getting started"
        title="From cargo install to a persistent on-disk database in ten minutes."
        subtitle="REPL, transactions, JOINs, prepared statements, vector + BM25 search, MCP, and six language SDKs."
      />
    ),
    { ...size },
  );
}