# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "pgrx" version = "0.12.8" authors = ["PgCentral Foundation, Inc. "] build = false include = ["src/**/*"] autobins = false autoexamples = false autotests = false autobenches = false description = "pgrx: A Rust framework for creating Postgres extensions" homepage = "https://github.com/pgcentralfoundation/pgrx/" documentation = "https://docs.rs/pgrx" readme = "README.md" keywords = [ "database", "postgres", "postgresql", "extension", ] categories = ["database"] license = "MIT" repository = "https://github.com/pgcentralfoundation/pgrx/" [package.metadata.docs.rs] features = [ "pg14", "cshim", ] no-default-features = true rustc-args = [ "--cfg", "docsrs", ] [lib] name = "pgrx" crate-type = ["rlib"] path = "src/lib.rs" [dependencies.atomic-traits] version = "0.3.0" [dependencies.bitflags] version = "2.4.0" [dependencies.bitvec] version = "1.0" [dependencies.enum-map] version = "2.6.3" [dependencies.heapless] version = "0.8" [dependencies.libc] version = "0.2" [dependencies.once_cell] version = "1.18.0" [dependencies.pgrx-macros] version = "=0.12.8" [dependencies.pgrx-pg-sys] version = "=0.12.8" [dependencies.pgrx-sql-entity-graph] version = "=0.12.8" [dependencies.seahash] version = "4.1.0" [dependencies.serde] version = "1.0" features = ["derive"] [dependencies.serde_cbor] version = "0.11.2" [dependencies.serde_json] version = "1.0" [dependencies.thiserror] version = "1" [dependencies.uuid] version = "1.4.1" features = ["v4"] [features] cshim = ["pgrx-pg-sys/cshim"] default = ["cshim"] nightly = [] no-schema-generation = [ "pgrx-macros/no-schema-generation", "pgrx-sql-entity-graph/no-schema-generation", ] 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"] pg17 = ["pgrx-pg-sys/pg17"] unsafe-postgres = [] [lints.clippy] cast_ptr_alignment = "allow" len_without_is_empty = "allow" missing_safety_doc = "allow" too_many_arguments = "allow" type_complexity = "allow" unnecessary_cast = "allow"