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
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pg_walstream"
version = "0.6.2"
version = "0.6.3"
edition = "2021"
authors = ["danielshih <dog830228@gmail.com>"]
license = "BSD-3-Clause"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
pg_walstream = "0.6.2"
pg_walstream = "0.6.3"
```

By default, this uses the `libpq` backend (C FFI). To switch to a **pure-Rust** build:

```toml
[dependencies]
pg_walstream = { version = "0.6.2", features = ["rustls-tls"] }
pg_walstream = { version = "0.6.3", features = ["rustls-tls"] }
```

When `rustls-tls` is enabled alongside the default `libpq`, `rustls-tls` takes priority automatically — no need to set `default-features = false`.
Expand All @@ -49,7 +49,7 @@ For a fully pure-Rust build with **no system dependencies** (avoids building `li

```toml
[dependencies]
pg_walstream = { version = "0.6.2", default-features = false, features = ["rustls-tls"] }
pg_walstream = { version = "0.6.3", default-features = false, features = ["rustls-tls"] }
```

## Feature Flags
Expand Down Expand Up @@ -94,7 +94,7 @@ sudo apt-get install cmake gcc
Then add to `Cargo.toml`:

```toml
pg_walstream = { version = "0.6.2", features = ["rustls-tls"] }
pg_walstream = { version = "0.6.3", features = ["rustls-tls"] }
```

#### TLS trust store
Expand Down
2 changes: 1 addition & 1 deletion load-tests/Cargo.lock

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

Loading
Loading