File tree 3 files changed +15
-3
lines changed
3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## v0.7.9
4
+
5
+ ## Fixed
6
+
7
+ * Fixed builds on OpenBSD.
8
+
9
+ ## Added
10
+
11
+ * Added the ` js ` feature for WASM support.
12
+ * Added support for the ` hostaddr ` config option to bypass DNS lookups.
13
+ * Added support for the ` load_balance_hosts ` config option to randomize connection ordering.
14
+ * The ` user ` config option now defaults to the executing process's user.
15
+
3
16
## v0.7.8
4
17
5
18
## Added
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tokio-postgres"
3
- version = " 0.7.8 "
3
+ version = " 0.7.9 "
4
4
authors = [
" Steven Fackler <[email protected] >" ]
5
5
edition = " 2018"
6
6
license = " MIT/Apache-2.0"
@@ -55,7 +55,7 @@ percent-encoding = "2.0"
55
55
pin-project-lite = " 0.2"
56
56
phf = " 0.11"
57
57
postgres-protocol = { version = " 0.6.6" , path = " ../postgres-protocol" }
58
- postgres-types = { version = " 0.2.4 " , path = " ../postgres-types" }
58
+ postgres-types = { version = " 0.2.5 " , path = " ../postgres-types" }
59
59
tokio = { version = " 1.27" , features = [" io-util" ] }
60
60
tokio-util = { version = " 0.7" , features = [" codec" ] }
61
61
rand = " 0.8.5"
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
- #![ doc( html_root_url = "https://docs.rs/tokio-postgres/0.7" ) ]
120
119
#![ warn( rust_2018_idioms, clippy:: all, missing_docs) ]
121
120
122
121
pub use crate :: cancel_token:: CancelToken ;
You can’t perform that action at this time.
0 commit comments