freebsd-ports/databases/postgresql-promscale/files/patch-Cargo.toml
Mark Felder 47853d04d0 databases/postgresql-promscale: add new port
The PostgreSQL Promscale extension provides the required database capability
and PL/pgsql code to support Promscale 0.11.0+

Promscale is API-compatible with Prometheus and stores your metrics in PostgreSQL
in a highly performant storage format with the help of TimescaleDB.
2022-11-02 21:48:47 +00:00

17 lines
702 B
TOML

--- Cargo.toml.orig 2022-11-02 15:28:07 UTC
+++ Cargo.toml
@@ -50,10 +50,10 @@ askama = "0.11.0"
pgx-tests = "0.4.5"
[patch.crates-io]
-pgx = { git = "https://github.com/timescale/pgx", rev = "96ece243" }
-pgx-macros = { git = "https://github.com/timescale/pgx", rev = "96ece243" }
-pgx-tests = { git = "https://github.com/timescale/pgx", rev = "96ece243" }
+pgx = { path = "../pgx/pgx" }
+pgx-macros = { path = "../pgx/pgx-macros" }
+pgx-tests = { path = "../pgx/pgx-tests" }
# from e2e workspace
-test-generator = { git = "https://github.com/JamesGuthrie/test-generator" }
+#test-generator = { git = "https://github.com/JamesGuthrie/test-generator" }
test-common = { path = "./test-common" }