File tree Expand file tree Collapse file tree 5 files changed +9
-4
lines changed Expand file tree Collapse file tree 5 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## v0.6.6 -2023-08-19
4
+
5
+ ### Added
6
+
7
+ * Added the ` js ` feature for WASM support.
8
+
3
9
## v0.6.5 - 2023-03-27
4
10
5
11
### Added
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " postgres-protocol"
3
- version = " 0.6.5 "
3
+ version = " 0.6.6 "
4
4
authors = [" Steven Fackler <sfackler@gmail.com>" ]
5
5
edition = " 2018"
6
6
description = " Low level Postgres protocol APIs"
Original file line number Diff line number Diff line change 9
9
//!
10
10
//! This library assumes that the `client_encoding` backend parameter has been
11
11
//! set to `UTF8`. It will most likely not behave properly if that is not the case.
12
- #![ doc( html_root_url = "https://docs.rs/postgres-protocol/0.6" ) ]
13
12
#![ warn( missing_docs, rust_2018_idioms, clippy:: all) ]
14
13
15
14
use byteorder:: { BigEndian , ByteOrder } ;
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ with-time-0_3 = ["time-03"]
30
30
[dependencies ]
31
31
bytes = " 1.0"
32
32
fallible-iterator = " 0.2"
33
- postgres-protocol = { version = " 0.6.4 " , path = " ../postgres-protocol" }
33
+ postgres-protocol = { version = " 0.6.5 " , path = " ../postgres-protocol" }
34
34
postgres-derive = { version = " 0.4.2" , optional = true , path = " ../postgres-derive" }
35
35
36
36
array-init = { version = " 2" , optional = true }
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ parking_lot = "0.12"
54
54
percent-encoding = " 2.0"
55
55
pin-project-lite = " 0.2"
56
56
phf = " 0.11"
57
- postgres-protocol = { version = " 0.6.5 " , path = " ../postgres-protocol" }
57
+ postgres-protocol = { version = " 0.6.6 " , path = " ../postgres-protocol" }
58
58
postgres-types = { version = " 0.2.4" , path = " ../postgres-types" }
59
59
tokio = { version = " 1.27" , features = [" io-util" ] }
60
60
tokio-util = { version = " 0.7" , features = [" codec" ] }
You can’t perform that action at this time.
0 commit comments