pgx-tests 0.7.4

Test framework for 'pgx'-based Postgres extensions
Documentation
[package]
name = "pgx-tests"
version = "0.7.4"
authors = ["ZomboDB, LLC <zombodb@gmail.com>"]
license = "MIT"
description = "Test framework for 'pgx'-based Postgres extensions"
homepage = "https://github.com/tcdi/pgx"
repository = "https://github.com/tcdi/pgx"
documentation = "https://docs.rs/pgx-tests"
readme = "README.md"
edition = "2021"

[lib]
crate-type = [ "cdylib", "lib" ]

[features]
default = [ ]
pg11 = [ "pgx/pg11" ]
pg12 = [ "pgx/pg12" ]
pg13 = [ "pgx/pg13" ]
pg14 = [ "pgx/pg14" ]
pg15 = [ "pgx/pg15" ]
pg_test = [ ]
cshim = [ "pgx/cshim" ]
no-schema-generation = [ "pgx/no-schema-generation", "pgx-macros/no-schema-generation" ]

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

[dependencies]
clap-cargo = "0.10.0"
owo-colors = "3.5.0"
once_cell = "1.17.1"
libc = "0.2.140"
pgx-macros = { path = "../pgx-macros", version = "=0.7.4" }
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.4" }
postgres = "0.19.4"
regex = "1.7.1"
serde = "1.0.156"
serde_json = "1.0.94"
sysinfo = "0.28.2"
time = "0.3.20"
eyre = "0.6.8"
thiserror = "1.0"

[dev-dependencies]
eyre = "0.6.8"  # testing functions that return `eyre::Result`

[dependencies.pgx]
path = "../pgx"
default-features = false
features = [ "time-crate" ] # testing purposes
version = "=0.7.4"