Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
- Updated crates
- Updated rust-toolchain
- Updated Dockerfile to use latest rust 1.48 version
- Updated AMD64 Alpine to use same version as rust-toolchain.
- Updated Rocket to the commit right before they updated hyper.
  Until that update there were some crates updated and some small fixes.
  After that build fails and we probably need to make some changes
(which is something already done in the async branch)
  • Loading branch information
BlackDex committed Dec 3, 2020
1 parent 9824d94 commit db4d49d
Show file tree
Hide file tree
Showing 9 changed files with 229 additions and 257 deletions.
448 changes: 210 additions & 238 deletions Cargo.lock

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rocket = { version = "0.5.0-dev", features = ["tls"], default-features = false }
rocket_contrib = "0.5.0-dev"

# HTTP client
reqwest = { version = "0.10.8", features = ["blocking", "json"] }
reqwest = { version = "0.10.9", features = ["blocking", "json"] }

# multipart/form-data support
multipart = { version = "0.17.0", features = ["server"], default-features = false }
Expand All @@ -49,7 +49,7 @@ chashmap = "2.2.2"
# A generic serialization/deserialization framework
serde = "1.0.117"
serde_derive = "1.0.117"
serde_json = "1.0.59"
serde_json = "1.0.60"

# Logging
log = "0.4.11"
Expand All @@ -64,15 +64,15 @@ libsqlite3-sys = { version = "0.18.0", features = ["bundled"], optional = true }

# Crypto-related libraries
rand = "0.7.3"
ring = "0.16.15"
ring = "0.16.19"

# UUID generation
uuid = { version = "0.8.1", features = ["v4"] }

# Date and time libraries
chrono = "0.4.19"
chrono-tz = "0.5.3"
time = "0.2.22"
time = "0.2.23"

# TOTP library
oath = "0.10.2"
Expand All @@ -93,7 +93,7 @@ yubico = { version = "0.9.1", features = ["online-tokio"], default-features = fa
dotenv = { version = "0.15.0", default-features = false }

# Lazy initialization
once_cell = "1.4.1"
once_cell = "1.5.2"

# Numerical libraries
num-traits = "0.2.14"
Expand All @@ -120,18 +120,18 @@ percent-encoding = "2.1.0"
idna = "0.2.0"

# CLI argument parsing
structopt = "0.3.20"
structopt = "0.3.21"

# Logging panics to logfile instead stderr only
backtrace = "0.3.54"
backtrace = "0.3.55"

# Macro ident concatenation
paste = "1.0.2"
paste = "1.0.3"

[patch.crates-io]
# Use newest ring
rocket = { git = 'https://github.com/SergioBenitez/Rocket', rev = '1010f6a2a88fac899dec0cd2f642156908038a53' }
rocket_contrib = { git = 'https://github.com/SergioBenitez/Rocket', rev = '1010f6a2a88fac899dec0cd2f642156908038a53' }
rocket = { git = 'https://github.com/SergioBenitez/Rocket', rev = '263e39b5b429de1913ce7e3036575a7b4d88b6d7' }
rocket_contrib = { git = 'https://github.com/SergioBenitez/Rocket', rev = '263e39b5b429de1913ce7e3036575a7b4d88b6d7' }

# For favicon extraction from main website
data-url = { git = 'https://github.com/servo/rust-url', package="data-url", rev = '7f1bd6ce1c2fde599a757302a843a60e714c5f72' }
data-url = { git = 'https://github.com/servo/rust-url', package="data-url", rev = '540ede02d0771824c0c80ff9f57fe8eff38b1291' }
4 changes: 2 additions & 2 deletions docker/Dockerfile.j2
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# This file was generated using a Jinja2 template.
# Please make your changes in `Dockerfile.j2` and then `make` the individual Dockerfile's.

{% set build_stage_base_image = "rust:1.46" %}
{% set build_stage_base_image = "rust:1.48" %}
{% if "alpine" in target_file %}
{% if "amd64" in target_file %}
{% set build_stage_base_image = "clux/muslrust:nightly-2020-10-02" %}
{% set build_stage_base_image = "clux/muslrust:nightly-2020-11-22" %}
{% set runtime_stage_base_image = "alpine:3.12" %}
{% set package_arch_target = "x86_64-unknown-linux-musl" %}
{% elif "arm32v7" in target_file %}
Expand Down
2 changes: 1 addition & 1 deletion docker/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
FROM bitwardenrs/web-vault@sha256:e40228f94cead5e50af6575fb39850a002dad146dab6836e5da5663e6d214303 as vault

########################## BUILD IMAGE ##########################
FROM rust:1.46 as build
FROM rust:1.48 as build

# Debian-based builds support multidb
ARG DB=sqlite,mysql,postgresql
Expand Down
2 changes: 1 addition & 1 deletion docker/amd64/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
FROM bitwardenrs/web-vault@sha256:e40228f94cead5e50af6575fb39850a002dad146dab6836e5da5663e6d214303 as vault

########################## BUILD IMAGE ##########################
FROM clux/muslrust:nightly-2020-10-02 as build
FROM clux/muslrust:nightly-2020-11-22 as build

# Alpine only works on SQlite
ARG DB=sqlite
Expand Down
2 changes: 1 addition & 1 deletion docker/arm32v6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
FROM bitwardenrs/web-vault@sha256:e40228f94cead5e50af6575fb39850a002dad146dab6836e5da5663e6d214303 as vault

########################## BUILD IMAGE ##########################
FROM rust:1.46 as build
FROM rust:1.48 as build

# Debian-based builds support multidb
ARG DB=sqlite,mysql,postgresql
Expand Down
2 changes: 1 addition & 1 deletion docker/arm32v7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
FROM bitwardenrs/web-vault@sha256:e40228f94cead5e50af6575fb39850a002dad146dab6836e5da5663e6d214303 as vault

########################## BUILD IMAGE ##########################
FROM rust:1.46 as build
FROM rust:1.48 as build

# Debian-based builds support multidb
ARG DB=sqlite,mysql,postgresql
Expand Down
2 changes: 1 addition & 1 deletion docker/arm64v8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
FROM bitwardenrs/web-vault@sha256:e40228f94cead5e50af6575fb39850a002dad146dab6836e5da5663e6d214303 as vault

########################## BUILD IMAGE ##########################
FROM rust:1.46 as build
FROM rust:1.48 as build

# Debian-based builds support multidb
ARG DB=sqlite,mysql,postgresql
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nightly-2020-10-14
nightly-2020-11-22

0 comments on commit db4d49d

Please sign in to comment.