Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Add a reference to the related cratepg_named_args#1115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
rudolphfroger wants to merge2 commits intorust-postgres:master
base:master
Choose a base branch
Loading
fromrudolphfroger:add-pg-named-args-ref
Open
Show file tree
Hide file tree
Changes fromall 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
6 changes: 6 additions & 0 deletionsREADME.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,6 +32,12 @@ TLS support for postgres and tokio-postgres via native-tls.

TLS support for postgres and tokio-postgres via openssl.

## Related crates

[`pg_named_args`](https://crates.io/crates/pg_named_args) enables one to use
named arguments in queries. The provided macro converts the named arguments to
positional arguments at compile time.

# Running test suite

The test suite requires postgres to be running in the correct configuration. The easiest way to do this is with docker:
Expand Down
6 changes: 6 additions & 0 deletionspostgres/src/lib.rs
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -64,6 +64,12 @@
//! | `with-uuid-1` | Enable support for the `uuid` crate. | [uuid](https://crates.io/crates/uuid) 1.0 | no |
//! | `with-time-0_2` | Enable support for the 0.2 version of the `time` crate. | [time](https://crates.io/crates/time/0.2.0) 0.2 | no |
//! | `with-time-0_3` | Enable support for the 0.3 version of the `time` crate. | [time](https://crates.io/crates/time/0.3.0) 0.3 | no |
//!
//! # Related crates
//!
//! [`pg_named_args`](https://crates.io/crates/pg_named_args) enables one to use named arguments
//! in queries. The provided macro converts the named arguments to positional arguments at compile
//! time.
#![warn(clippy::all, rust_2018_idioms, missing_docs)]

pub use fallible_iterator;
Expand Down
6 changes: 6 additions & 0 deletionstokio-postgres/src/lib.rs
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -117,6 +117,12 @@
//! | `with-uuid-1` | Enable support for the `uuid` crate. | [uuid](https://crates.io/crates/uuid) 1.0 | no |
//! | `with-time-0_2` | Enable support for the 0.2 version of the `time` crate. | [time](https://crates.io/crates/time/0.2.0) 0.2 | no |
//! | `with-time-0_3` | Enable support for the 0.3 version of the `time` crate. | [time](https://crates.io/crates/time/0.3.0) 0.3 | no |
//!
//! # Related crates
//!
//! [`pg_named_args`](https://crates.io/crates/pg_named_args) enables one to use named arguments
//! in queries. The provided macro converts the named arguments to positional arguments at compile
//! time.
#![warn(rust_2018_idioms, clippy::all, missing_docs)]

pub use crate::cancel_token::CancelToken;
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp