[package]
name = "pgrx"
version = "0.11.4"
authors = ["PgCentral Foundation, Inc. <contact@pgcentral.org>"]
license = "MIT"
description = "pgrx: A Rust framework for creating Postgres extensions"
homepage = "https://github.com/pgcentralfoundation/pgrx/"
repository = "https://github.com/pgcentralfoundation/pgrx/"
documentation = "https://docs.rs/pgrx"
categories = ["database"]
keywords = ["database", "postgres", "postgresql", "extension"]
readme = "../README.md"
edition = "2021"
[lib]
crate-type = [ "rlib" ]
[features]
default = [ "cshim" ]
cshim = [ "pgrx-pg-sys/cshim" ]
pg11 = [ "pgrx-pg-sys/pg11" ]
pg12 = [ "pgrx-pg-sys/pg12" ]
pg13 = [ "pgrx-pg-sys/pg13" ]
pg14 = [ "pgrx-pg-sys/pg14" ]
pg15 = [ "pgrx-pg-sys/pg15" ]
pg16 = [ "pgrx-pg-sys/pg16" ]
no-schema-generation = ["pgrx-macros/no-schema-generation", "pgrx-sql-entity-graph/no-schema-generation"]
unsafe-postgres = []
[package.metadata.docs.rs]
features = ["pg14", "cshim"]
no-default-features = true
rustc-args = ["--cfg", "docsrs"]
[dependencies]
pgrx-macros = { path = "../pgrx-macros", version = "=0.11.4" }
pgrx-pg-sys = { path = "../pgrx-pg-sys", version = "=0.11.4" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.11.4" }
once_cell = "1.18.0"
seq-macro = "0.3"
uuid = { version = "1.4.1", features = [ "v4" ] }
enum-map = "2.6.3"
thiserror = "1.0"
atomic-traits = "0.3.0"
bitflags = "2.4.0"
bitvec = "1.0"
heapless = "0.7.16"
libc = "0.2.149"
seahash = "4.1.0"
serde = { version = "1.0", features = [ "derive" ] }
serde_cbor = "0.11.2"
serde_json = "1.0"