From 23b84a0e13763b060ca7708a4eeff75713affccf Mon Sep 17 00:00:00 2001 From: Eric Ridge Date: Tue, 3 Jan 2023 11:15:03 -0500 Subject: [PATCH] The `cshim` feature should not be a default in `pgx-pg-sys`. (#990) Users don't use the pgx-pg-sys crate as a direct dependency, and `pgx` itself has `cshim` as its default. This makes it easy for users to expose their own feature to toggle the cshim without pgx needing knowledge of pgx-pg-sys' default feature set. --- pgx-pg-sys/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgx-pg-sys/Cargo.toml b/pgx-pg-sys/Cargo.toml index 41739b83a..bf5dca501 100644 --- a/pgx-pg-sys/Cargo.toml +++ b/pgx-pg-sys/Cargo.toml @@ -11,7 +11,7 @@ readme = "README.md" edition = "2021" [features] -default = [ "cshim" ] +default = [ ] pg11 = [ ] pg12 = [ ] pg13 = [ ]