# 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 = "plprql" version = "1.0.0" authors = ["Kasper Marstal "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A procedural language PostgreSQL extension for PRQL" homepage = "https://github.com/kaspermarstal/plprql" readme = "README.md" keywords = [ "sql", "prql", "postgresql", "extension", "pgrx", ] categories = ["database"] license = "Apache-2.0" repository = "https://github.com/kaspermarstal/plprql" [lib] name = "plprql" crate-type = ["cdylib"] path = "src/lib.rs" [dependencies.pgrx] version = "=0.11.4" [dependencies.prqlc] version = "0.13.2" features = ["postgres"] [dependencies.thiserror] version = "2.0.0" [dev-dependencies.pgrx-tests] version = "=0.11.4" [features] default = ["pg16"] pg12 = [ "pgrx/pg12", "pgrx-tests/pg12", ] pg13 = [ "pgrx/pg13", "pgrx-tests/pg13", ] pg14 = [ "pgrx/pg14", "pgrx-tests/pg14", ] pg15 = [ "pgrx/pg15", "pgrx-tests/pg15", ] pg16 = [ "pgrx/pg16", "pgrx-tests/pg16", ] pg_test = []