Skip to content

Commit 5c7ddc9

Browse files
committed
Upgrade geo, rand and base64
1 parent 289de79 commit 5c7ddc9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

postgres-protocol/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ repository = "https://github.com/sfackler/rust-postgres-protocol"
99
readme = "../README.md"
1010

1111
[dependencies]
12-
base64 = "0.9"
12+
base64 = "0.10"
1313
byteorder = "1.0"
1414
bytes = "0.4"
1515
fallible-iterator = "0.1"
1616
generic-array = "0.12"
1717
hmac = "0.7"
1818
md5 = "0.5"
1919
memchr = "2.0"
20-
rand = "0.5"
20+
rand = "0.6"
2121
sha2 = "0.8"
2222
stringprep = "0.1"

postgres/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ runtime = ["tokio-postgres/runtime", "tokio", "lazy_static", "log"]
1212
"with-bit-vec-0.5" = ["tokio-postgres/with-bit-vec-0.5"]
1313
"with-chrono-0.4" = ["tokio-postgres/with-chrono-0.4"]
1414
"with-eui48-0.4" = ["tokio-postgres/with-eui48-0.4"]
15-
"with-geo-0.10" = ["tokio-postgres/with-geo-0.10"]
15+
"with-geo-0.11" = ["tokio-postgres/with-geo-0.11"]
1616
"with-serde_json-1" = ["tokio-postgres/with-serde_json-1"]
1717
"with-uuid-0.7" = ["tokio-postgres/with-uuid-0.7"]
1818

tokio-postgres/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ features = [
1818
"with-bit-vec-0.5",
1919
"with-chrono-0.4",
2020
"with-eui48-0.4",
21-
"with-geo-0.10",
21+
"with-geo-0.11",
2222
"with-serde_json-1",
2323
"with-uuid-0.7",
2424
]
@@ -33,7 +33,7 @@ runtime = ["tokio-tcp", "tokio-timer", "tokio-uds", "futures-cpupool", "lazy_sta
3333
"with-bit-vec-0.5" = ["bit-vec-05"]
3434
"with-chrono-0.4" = ["chrono-04"]
3535
"with-eui48-0.4" = ["eui48-04"]
36-
"with-geo-0.10" = ["geo-010"]
36+
"with-geo-0.11" = ["geo-011"]
3737
with-serde_json-1 = ["serde-1", "serde_json-1"]
3838
"with-uuid-0.7" = ["uuid-07"]
3939

@@ -58,7 +58,7 @@ tokio-timer = { version = "0.2", optional = true }
5858
bit-vec-05 = { version = "0.5", package = "bit-vec", optional = true }
5959
chrono-04 = { version = "0.4", package = "chrono", optional = true }
6060
eui48-04 = { version = "0.4", package = "eui48", optional = true }
61-
geo-010 = { version = "0.10", package = "geo", optional = true }
61+
geo-011 = { version = "0.11", package = "geo", optional = true }
6262
serde-1 = { version = "1.0", package = "serde", optional = true }
6363
serde_json-1 = { version = "1.0", package = "serde_json", optional = true }
6464
uuid-07 = { version = "0.7", package = "uuid", optional = true }

0 commit comments

Comments
 (0)