Skip to content

Commit dd582f5

Browse files
committed
docs: update docs for new features
1 parent f9a0381 commit dd582f5

File tree

3 files changed

+48
-19
lines changed

3 files changed

+48
-19
lines changed

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

postgresql_archive/src/lib.rs

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,32 @@
6060
//! | `native-tls` | Enables native-tls support | No |
6161
//! | `rustls-tls` | Enables rustls-tls support | Yes |
6262
//!
63+
//! ### Configurations
64+
//!
65+
//! | Name | Description | Default? |
66+
//! |-----------|-------------------------------------|----------|
67+
//! | `theseus` | Enables theseus PostgreSQL binaries | Yes |
68+
//! | `zonky` | Enables zonky PostgreSQL binaries | No |
69+
//!
70+
//! ### Hashers
71+
//!
72+
//! | Name | Description | Default? |
73+
//! |--------|----------------------|----------|
74+
//! | `md5` | Enables md5 hashers | No |
75+
//! | `sha1` | Enables sha1 hashers | No |
76+
//! | `sha2` | Enables sha2 hashers | Yes¹ |
77+
//!
78+
//! ¹ enabled by the `theseus` feature flag.
79+
//!
80+
//! ### Repositories
81+
//!
82+
//! | Name | Description | Default? |
83+
//! |----------|---------------------------|----------|
84+
//! | `github` | Enables github repository | Yes¹ |
85+
//! | `maven` | Enables maven repository | No |
86+
//!
87+
//! ¹ enabled by the `theseus` feature flag.
88+
//!
6389
//! ## Supported platforms
6490
//!
6591
//! `postgresql_archive` provides implementations for the following:

postgresql_embedded/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,16 @@
8181
//!
8282
//! The following features are available:
8383
//!
84+
//!
8485
//! | Name | Description | Default? |
8586
//! |--------------|----------------------------------------------------------|----------|
8687
//! | `bundled` | Bundles the PostgreSQL archive into the resulting binary | No |
8788
//! | `blocking` | Enables the blocking API; requires `tokio` | No |
8889
//! | `native-tls` | Enables native-tls support | No |
8990
//! | `rustls-tls` | Enables rustls-tls support | Yes |
91+
//! | `theseus` | Enables theseus PostgreSQL binaries | Yes |
9092
//! | `tokio` | Enables using tokio for async | No |
93+
//! | `zonky` | Enables zonky PostgreSQL binaries | No |
9194
//!
9295
//! ## Safety
9396
//!

0 commit comments

Comments
 (0)