Files
windmill/dev/embedded-db/Cargo.toml
T
Ruben FiszelandClaude Opus 4.8 8e7c1ce8bb docs(experiment): oliphaunt/pglite-oxide lightweight dev-mode harness (WIN-2130)
Standalone dev/embedded-db harness (boots embedded pglite Postgres, execs windmill against it; plus a schema-compat probe) and a write-up of the experiment. The enabling migration-bootstrap fix landed separately in #9970 (now on main).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-06 19:03:11 +00:00

26 lines
729 B
TOML

# Standalone experiment crate (WIN-2130). Intentionally NOT a member of the
# backend workspace: it pulls the heavy wasmer/wasix tree and pins alpha
# versions, which must not leak into the main backend Cargo.lock.
[package]
name = "wm-embedded-db"
version = "0.1.0"
edition = "2021"
publish = false
[[bin]]
name = "wm-embedded-db"
path = "src/main.rs"
[[bin]]
name = "schema-compat"
path = "src/schema_compat.rs"
[dependencies]
pglite-oxide = "0.5"
anyhow = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio", "postgres", "migrate"] }
# Detach from any parent workspace so this keeps its own isolated lockfile.
[workspace]