File tree 3 files changed +18
-0
lines changed
3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,12 @@ TLS support for postgres and tokio-postgres via native-tls.
32
32
33
33
TLS support for postgres and tokio-postgres via openssl.
34
34
35
+ ## Related crates
36
+
37
+ [ ` pg_named_args ` ] ( https://crates.io/crates/pg_named_args ) enables one to use
38
+ named arguments in queries. The provided macro converts the named arguments to
39
+ positional arguments at compile time.
40
+
35
41
# Running test suite
36
42
37
43
The test suite requires postgres to be running in the correct configuration. The easiest way to do this is with docker:
Original file line number Diff line number Diff line change 64
64
//! | `with-uuid-1` | Enable support for the `uuid` crate. | [uuid](https://crates.io/crates/uuid) 1.0 | no |
65
65
//! | `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 |
66
66
//! | `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 |
67
+ //!
68
+ //! # Related crates
69
+ //!
70
+ //! [`pg_named_args`](https://crates.io/crates/pg_named_args) enables one to use named arguments
71
+ //! in queries. The provided macro converts the named arguments to positional arguments at compile
72
+ //! time.
67
73
#![ warn( clippy:: all, rust_2018_idioms, missing_docs) ]
68
74
69
75
pub use fallible_iterator;
Original file line number Diff line number Diff line change 116
116
//! | `with-uuid-1` | Enable support for the `uuid` crate. | [uuid](https://crates.io/crates/uuid) 1.0 | no |
117
117
//! | `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 |
118
118
//! | `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 |
119
+ //!
120
+ //! # Related crates
121
+ //!
122
+ //! [`pg_named_args`](https://crates.io/crates/pg_named_args) enables one to use named arguments
123
+ //! in queries. The provided macro converts the named arguments to positional arguments at compile
124
+ //! time.
119
125
#![ warn( rust_2018_idioms, clippy:: all, missing_docs) ]
120
126
121
127
pub use crate :: cancel_token:: CancelToken ;
You can’t perform that action at this time.
0 commit comments