diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-07 11:39:47 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-07 11:39:47 -0800 |
commit | 093667af3e39c0fc958a98d62735fba75895df46 (patch) | |
tree | 5985ad9dff0d7265846293bc4d4fd024d865c1b9 | |
parent | 05578c296e6a7fbbefb3d1537f5089f5e67b8ae0 (diff) | |
download | fatcat-093667af3e39c0fc958a98d62735fba75895df46.tar.gz fatcat-093667af3e39c0fc958a98d62735fba75895df46.zip |
target rust 1.32
-rw-r--r-- | .gitlab-ci.yml | 2 | ||||
-rw-r--r-- | rust/README.md | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d404b332..75edee24 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,6 @@ unified_test: - image: "rust:1.31-stretch" + image: "rust:1.32-stretch" variables: LC_ALL: "C.UTF-8" LANG: "C.UTF-8" diff --git a/rust/README.md b/rust/README.md index decfc74d..7393322d 100644 --- a/rust/README.md +++ b/rust/README.md @@ -18,9 +18,9 @@ The SQL database schema (and migrations) are under `./migrations/`. You need the following dependencies installed locally to build, run tests, and do development work: -- rust stable, 1.29+ (eg, via "rustup", includes cargo tool) +- rust stable, 2018 edition, 1.32+ (eg, via "rustup", includes cargo tool) - diesel (`cargo install diesel_cli`) -- postgres (9.6+; targetting 11.1 for production) +- postgres (compatible with 9.6+; run 11.x in production) - postgres libs (debian: `sudo apt install libsqlite3-dev libpq-dev`) - libsodium library and development headers (debian: `libsodium-dev`) |