Skip to content

Commit b3b39ec

Browse files
committed
updated toolchain version to 1.39 nightly.
1 parent 14a5fc5 commit b3b39ec

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

postgres-rest-actix/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Now, the response will return the aliased fields instead:
141141
- Your tables & columns only contain letters, numbers, and underscore. We are converting query parameters/body parameters into an SQL abstract syntax tree (AST) before finally executing an SQL query in the background; there is no schema/model configuration (like in Diesel), so this restriction makes data easier to validate & secure.
142142
- You don’t need to query for `HStore`, `bit`, or `varbit` (technical limitations for now).
143143
- `actix-web >= 1.0.0`.
144-
- Rust >= 1.38 (that means nightly, for now).
144+
- Rust >= 1.39 (that means nightly, for now).
145145

146146
## Configuration
147147

postgres-rest-actix/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// nightly features
2-
#![feature(async_await)]
31
// used for dev/tests
42
#![deny(clippy::complexity, clippy::correctness, clippy::perf, clippy::style)]
53
// to serialize large json (like the index)

postgres-rest/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// nightly features
2-
#![feature(async_await)]
31
// used for dev/tests
42
#![deny(clippy::complexity, clippy::correctness, clippy::perf, clippy::style)]
53
// to serialize large json (like the index)

rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2019-08-11
1+
nightly-2019-08-23

0 commit comments

Comments
 (0)