diff options
author | Mathijs van Veluw <[email protected]> | 2023-11-15 10:41:14 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-11-15 10:41:14 +0100 |
commit | 48836501bf348386d9bb1378fb56db33c19d3732 (patch) | |
tree | 86dac639a0234874909e2efa33501480d7769864 /src/util.rs | |
parent | f863ffb89a0f2a0a682c67110af32c731b5b9fcb (diff) | |
download | vaultwarden-48836501bf348386d9bb1378fb56db33c19d3732.tar.gz vaultwarden-48836501bf348386d9bb1378fb56db33c19d3732.zip |
Update crates (#4074)1.30.1
* Remove another header for websocket connections
* Fix small bake issue
* Update crates
Updated crates and adjusted code where needed.
One major update is Rocket rc4, no need anymore (again) for crates.io patching.
The only item still pending is openssl/openssl-sys for which we need to
wait if https://github.com/sfackler/rust-openssl/pull/2094 will be
merged. If, then we can remove the pinned versions for the openssl crate.
Diffstat (limited to 'src/util.rs')
-rw-r--r-- | src/util.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util.rs b/src/util.rs index 2aef77b3..2afd3ed8 100644 --- a/src/util.rs +++ b/src/util.rs @@ -46,6 +46,7 @@ impl Fairing for AppHeaders { // Remove headers which could cause websocket connection issues res.remove_header("X-Frame-Options"); res.remove_header("X-Content-Type-Options"); + res.remove_header("Permissions-Policy"); return; } (_, _) => (), |