From 17487f45183e299a3e761e7c7b412fca99b26ea9 Mon Sep 17 00:00:00 2001 From: Sean Linsley Date: Wed, 2 Apr 2025 19:56:19 -0500 Subject: [PATCH] Exclude pg_query.pb-c.o from package This is listed in the libpg_query gitignore file --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 015c965..1ab6997 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,8 @@ include = [ # libpg_query "Makefile", "pg_query.h", "libpg_query/{src,vendor}/**/*.{c,h}", - "libpg_query/protobuf/{pg_query.pb-c.*,pg_query.proto}", + "libpg_query/protobuf/pg_query.pb-c.{c,h}", + "libpg_query/protobuf/pg_query.proto", ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html