mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-08 16:03:27 +00:00
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>
26 lines
729 B
TOML
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]
|