aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-08-26 13:34:19 +0200
committerBryan Newbold <bnewbold@robocracy.org>2019-08-26 13:34:23 +0200
commita9d290b01686e3a29e16197b23e64dc512637f6c (patch)
tree2e7583ac00217c9d4cd011225548347cae6012bc
parentef5321fce597a5633425ce25ea4582ff06071d31 (diff)
downloadfatcat-a9d290b01686e3a29e16197b23e64dc512637f6c.tar.gz
fatcat-a9d290b01686e3a29e16197b23e64dc512637f6c.zip
update required rust to 1.34+
Will most likely bump to 1.39 or whatever async/await lands in later this year, but for now requiring at least the version debian buster (current stable) ships with.
-rw-r--r--.gitlab-ci.yml2
-rw-r--r--CHANGELOG.md2
-rw-r--r--rust/README.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6a2be733..ecf87203 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -12,7 +12,7 @@ variables:
PIPENV_VENV_IN_PROJECT: "true"
CARGO_HOME: ".cargo_cache"
-image: "rust:1.32-stretch"
+image: "rust:1.34-stretch"
unified_test:
variables:
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8fda9edd..c78fdc10 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -16,7 +16,7 @@ See also:
## [Unreleased]
-Nothing yet!
+- updated rust (cargo) dependencies; depend on rust 1.34+ (Debian buster)
## [0.3.0] - 2019-05-23
diff --git a/rust/README.md b/rust/README.md
index cba926dc..fbac3bc3 100644
--- a/rust/README.md
+++ b/rust/README.md
@@ -18,7 +18,7 @@ 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, 2018 edition, 1.32+ (eg, via "rustup", includes cargo tool)
+- rust stable, 2018 edition, 1.34+ (eg, via "rustup", includes cargo tool)
- diesel (`cargo install diesel_cli`)
- postgres (compatible with 9.6+; run 11.x in production)
- postgres libs (debian/ubuntu: `libsqlite3-dev libpq-dev`)