aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
AgeCommit message (Collapse)Author
2018-10-04Updated dependencies, removed valid mail check (now done by lettre), and ↵Daniel García
updated global domains file
2018-09-20Update dependencies to point to upstream lettreDaniel García
2018-09-19Temp fix for OpenSSL 1.1.1 compatibilityDaniel García
2018-09-19Updated dependenciesDaniel García
2018-09-13Updated dependencies and fixed errorsDaniel García
2018-08-30Initial version of websockets notification support.Daniel García
For now only folder notifications are sent (create, rename, delete). The notifications are only tested between two web-vault sessions in different browsers, mobile apps and browser extensions are untested. The websocket server is exposed in port 3012, while the rocket server is exposed in another port (8000 by default). To make notifications work, both should be accessible in the same port, which requires a reverse proxy. My testing is done with Caddy server, and the following config: ``` localhost { # The negotiation endpoint is also proxied to Rocket proxy /notifications/hub/negotiate 0.0.0.0:8000 { transparent } # Notifications redirected to the websockets server proxy /notifications/hub 0.0.0.0:3012 { websocket } # Proxy the Root directory to Rocket proxy / 0.0.0.0:8000 { transparent } } ``` This exposes the service in port 2015.
2018-08-24Updated dependencies, added Travis CI integration and some badgesDaniel García
2018-07-21Updated dependencies and Docker image to new web-vaultDaniel García
2018-07-13Bump version to 0.10.00.10.0Daniel García
2018-07-12Implemented U2F, refactored Two Factor authentication, registering U2F ↵Daniel García
device and authentication should work. Works on Chrome on MacOS with a virtual device.
2018-06-29Updated dependencies and rust versionDaniel García
2018-06-12Updated dependencies and created 'rust-toolchain', to mark a working nightly ↵Daniel García
to rustup users, and hopefully avoid some nightly breakage.
2018-06-01Updated versionDaniel García
2018-06-01Updated dependencies and removed some warnings from jsonwebtokenDaniel García
2018-06-01Update rocket to 0.3.12Miroslav Prasil
2018-05-21Update rocket to 0.3.11Miroslav Prasil
2018-05-07Update dependencies and bundle SQLite with the program, so we have one less ↵Daniel García
dependency to install separately
2018-04-24Updated some dependencies and removed old unused attribute that might create ↵Daniel García
compile errors
2018-04-18Bump the rocket version to compile with current nightlyMiroslav Prasil
2018-03-21Updated dependenciesDaniel García
2018-03-07r2d2_diesel is included in diesel since 1.1, so we don't need the ↵Daniel García
dependencies directly. Same thing with time, included in chrono
2018-03-06Updated Cipher API with breaking changes, and included backwards compatibilityDaniel García
2018-03-01Removed unused test library that broke with latest nightly, and updated ↵Daniel García
dependencies
2018-02-23Fixed cipher import, created missing data structs instead of using generic ↵Daniel García
Value, and fixed some warnings
2018-02-18Reduced Docker final image and updated dependenciesDaniel García
2018-02-15Upload and download attachments, and added License fileDaniel García
2018-02-10First working versionDaniel García