Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plrust-trusted-pgx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "plrust-trusted-pgx"
version = "0.0.0-do-not-use"
version = "1.0.0-rc.0"
authors = ["TCDI <opensource@tcdi.com>"]
edition = "2021"
license = "PostgreSQL"
Expand Down
2 changes: 1 addition & 1 deletion plrust-trusted-pgx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
of capabilities necessary to compile [`plrust`](https://github.com/tcdi/plrust) user functions along with safe access to
various parts of Postgres including some data types, logging, Spi, and triggers.

You might be tempted to use this for your own pgx extension development, but you shouldn't. It's intended for use onely
You might be tempted to use this for your own pgx extension development, but you shouldn't. It's intended for use only
with plrust.
12 changes: 6 additions & 6 deletions plrust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "plrust"
version = "1.0.0-beta.1"
version = "1.0.0-rc.0"
authors = ["TCDI <opensource@tcdi.com>"]
edition = "2021"
license = "PostgreSQL Open Source License"
Expand Down Expand Up @@ -28,22 +28,22 @@ force_enable_x86_64_darwin_generations = []

[dependencies]
cfg-if = "1" # platform conditional helper
once_cell = "1.17.0" # polyfills a nightly feature
once_cell = "1.17.1" # polyfills a nightly feature
semver = "1.0.16"
home = "0.5.4" # where can we find cargo?

# working with our entry in pg_catalog.pg_proc
base64 = "0.21.0"
flate2 = "1.0.25"
serde = "1.0.152"
serde_json = "1.0.91"
serde_json = "1.0.93"

# pgx core details
pgx = { version = "=0.7.2" }

# language handler support
libloading = "0.7.4"
toml = "0.7.1"
toml = "0.7.2"
tempdir = "0.3.7" # for building crates
tempfile = "3.3.0"

Expand All @@ -68,5 +68,5 @@ memfd = "0.6.2" # for anonymously writing/loading user function .so
[dev-dependencies]
pgx-tests = { version = "=0.7.2" }
tempdir = "0.3.7"
once_cell = "1.17.0"
toml = "0.7.1"
once_cell = "1.17.1"
toml = "0.7.2"
10 changes: 5 additions & 5 deletions plrustc/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 6 additions & 8 deletions plrustc/plrustc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
[package]
name = "plrustc"
version = "0.1.0"
version = "1.0.0-rc.0"
edition = "2021"
description = "`rustc_driver` wrapper for plrust"
license = "PostgreSQL"
authors = ["TCDI <opensource@tcdi.com>"]
homepage = "https://github.com/tcdi/plrust/"
repository = "https://github.com/tcdi/plrust/"

[dependencies]
once_cell = "1.17.0"
# rustc_tools_util = "0.3.0"
# log = "0.4"
# env-logger = "0.10"

# [build-dependencies]
# rustc_tools_util = "0.3.0"
once_cell = "1.17.1"

[dev-dependencies]
compiletest_rs = "0.9"
Expand Down