1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-12-05 22:08:29 +00:00

Updated dependencies and Docker image to new web-vault

This commit is contained in:
Daniel García 2018-07-21 17:27:00 +02:00
commit a291dea16f
8 changed files with 155 additions and 183 deletions

View file

@ -17,7 +17,7 @@ struct OrgData {
Key: String,
Name: String,
#[serde(rename = "PlanType")]
_PlanType: String, // Ignored, always use the same plan
_PlanType: NumberOrString, // Ignored, always use the same plan
}
#[derive(Deserialize, Debug)]

View file

@ -1,5 +1,6 @@
#![feature(plugin, custom_derive)]
#![plugin(rocket_codegen)]
#![allow(proc_macro_derive_resolution_fallback)] // TODO: Remove this when diesel update fixes warnings
extern crate rocket;
extern crate rocket_contrib;
extern crate reqwest;