pgx 0.7.2

pgx: A Rust framework for creating Postgres extensions
Documentation
[package]
name = "pgx"
version = "0.7.2"
authors = ["ZomboDB, LLC <zombodb@gmail.com>"]
license = "MIT"
description = "pgx:  A Rust framework for creating Postgres extensions"
homepage = "https://github.com/tcdi/pgx"
repository = "https://github.com/tcdi/pgx"
documentation = "https://docs.rs/pgx"
categories = ["database"]
keywords = ["database", "postgres", "postgresql", "extension"]
readme = "../README.md"
edition = "2021"

[lib]
crate-type = [ "rlib" ]

[features]
default = [ "cshim" ]
cshim = [ "pgx-pg-sys/cshim" ]
pg11 = [ "pgx-pg-sys/pg11" ]
pg12 = [ "pgx-pg-sys/pg12" ]
pg13 = [ "pgx-pg-sys/pg13" ]
pg14 = [ "pgx-pg-sys/pg14" ]
pg15 = [ "pgx-pg-sys/pg15" ]
time-crate = ["dep:time"]
no-schema-generation = ["pgx-macros/no-schema-generation", "pgx-sql-entity-graph/no-schema-generation"]
unsafe-postgres = []     # when trying to compile against something that looks like Postgres but claims to be diffent

[package.metadata.docs.rs]
features = ["pg14", "cshim"]
no-default-features = true
# Enable `#[cfg(docsrs)]` (https://docs.rs/about/builds#cross-compiling)
rustc-args = ["--cfg", "docsrs"]

[dependencies]
pgx-macros = { path = "../pgx-macros", version = "=0.7.2" }
pgx-pg-sys = { path = "../pgx-pg-sys", version = "=0.7.2" }
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.2" }

# used to internally impl things
once_cell = "1.17.1" # polyfill until std::lazy::OnceCell stabilizes
seq-macro = "0.3" # impls loops in macros
uuid = { version = "1.3.0", features = [ "v4" ] } # PgLwLock and shmem

# error handling and logging
thiserror = "1.0"
tracing = "0.1.37"
tracing-error = "0.2.0"

# exposed in public API
atomic-traits = "0.3.0" # PgAtomic and shmem init
bitflags = "1.3.2" # BackgroundWorker
bitvec = "1.0" # processing array nullbitmaps
heapless = "0.7.16" # shmem and PgLwLock
libc = "0.2.139" # FFI type compat
seahash = "4.1.0" # derive(PostgresHash)
serde = { version = "1.0.152", features = [ "derive" ] } # impls on pub types
serde_cbor = "0.11.2" # derive(PostgresType)
serde_json = "1.0.93" # everything JSON
time = { version = "0.3.19", features = ["formatting", "parsing", "alloc", "macros"], optional = true }