mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-07-15 00:35:01 +00:00
Update dependencies and remove unwraps from Cipher::to_json
This commit is contained in:
parent
fff72889f6
commit
76f38621de
4 changed files with 198 additions and 170 deletions
14
Cargo.toml
14
Cargo.toml
|
@ -25,7 +25,7 @@ rocket = { version = "0.5.0-dev", features = ["tls"], default-features = false }
|
|||
rocket_contrib = "0.5.0-dev"
|
||||
|
||||
# HTTP client
|
||||
reqwest = "0.9.17"
|
||||
reqwest = "0.9.18"
|
||||
|
||||
# multipart/form-data support
|
||||
multipart = { version = "0.16.1", features = ["server"], default-features = false }
|
||||
|
@ -86,15 +86,15 @@ dotenv = { version = "0.14.1", default-features = false }
|
|||
lazy_static = "1.3.0"
|
||||
|
||||
# More derives
|
||||
derive_more = "0.14.1"
|
||||
derive_more = "0.15.0"
|
||||
|
||||
# Numerical libraries
|
||||
num-traits = "0.2.8"
|
||||
num-derive = "0.2.5"
|
||||
|
||||
# Email libraries
|
||||
lettre = "0.9.1"
|
||||
lettre_email = "0.9.1"
|
||||
lettre = "0.9.2"
|
||||
lettre_email = "0.9.2"
|
||||
native-tls = "0.2.3"
|
||||
quoted_printable = "0.4.1"
|
||||
|
||||
|
@ -103,7 +103,7 @@ handlebars = "1.1.0"
|
|||
|
||||
# For favicon extraction from main website
|
||||
soup = "0.4.1"
|
||||
regex = "1.1.6"
|
||||
regex = "1.1.7"
|
||||
|
||||
[patch.crates-io]
|
||||
# Add support for Timestamp type
|
||||
|
@ -112,7 +112,3 @@ rmp = { git = 'https://github.com/dani-garcia/msgpack-rust' }
|
|||
# Use newest ring
|
||||
rocket = { git = 'https://github.com/SergioBenitez/Rocket', rev = 'dbcb0a75b9556763ac3ab708f40c8f8ed75f1a1e' }
|
||||
rocket_contrib = { git = 'https://github.com/SergioBenitez/Rocket', rev = 'dbcb0a75b9556763ac3ab708f40c8f8ed75f1a1e' }
|
||||
|
||||
# Fix lettre on newer nightlies
|
||||
lettre = { version = "0.9", git = "https://github.com/lettre/lettre", rev= '0ead3cde09a02918e3976aa442329fe247f05c55' }
|
||||
lettre_email = { version = "0.9", git = "https://github.com/lettre/lettre", rev= '0ead3cde09a02918e3976aa442329fe247f05c55' }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue