From 2eef88b3cceee5c594c16d51694e2f09d3a59041 Mon Sep 17 00:00:00 2001 From: Kasper Marstal Date: Sat, 24 Feb 2024 11:43:58 -0800 Subject: [PATCH] Add metadata for publishing on crates.io (#25) --- plprql/Cargo.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plprql/Cargo.toml b/plprql/Cargo.toml index c0d4675..f2c375f 100644 --- a/plprql/Cargo.toml +++ b/plprql/Cargo.toml @@ -2,6 +2,14 @@ name = "plprql" version = "0.1.0" edition = "2021" +description = "A procedural language PostgreSQL extension for PRQL" +authors = ["Kasper Marstal "] +homepage = "https://github.com/kaspermarstal/plprql" +repository = "https://github.com/kaspermarstal/plprql" +readme = "../README.md" +categories = ["database"] +keywords = ["sql", "prql", "postgresql", "extension", "pgrx"] +license = "Apache-2.0" [lib] crate-type = ["cdylib"]