all flow commands working, extension compiled

This commit is contained in:
2025-04-13 17:19:18 -04:00
parent 249b588532
commit 3f5662c797
13 changed files with 3109 additions and 68 deletions

View File

@ -1,31 +1,29 @@
[package]
name = "jspg"
version = "0.1.0"
edition = "2024"
edition = "2021"
[dependencies]
pgrx = "0.14.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
jsonschema = "0.29.1"
lazy_static = "1.5.0"
[dev-dependencies]
pgrx-tests = "0.14.0"
[lib]
crate-type = ["cdylib", "lib"]
[[bin]]
name = "jspg"
path = "./src/bin/jspg.rs"
name = "pgrx_embed_jspg"
path = "src/bin/pgrx_embed.rs"
[features]
default = ["pg17"]
pg17 = ["pgrx/pg17", "pgrx-tests/pg17" ]
pg_test = []
[dependencies]
pgrx = "0.14.0"
serde = "1.0.219"
serde_json = "1.0.140"
jsonschema = {version = "0.29.1", default-features = false}
[dev-dependencies]
pgrx-tests = "0.14.0"
[profile.dev]
panic = "unwind"
lto = "thin"