1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-06-24 20:12:50 +00:00

Removed unused test library that broke with latest nightly, and updated dependencies

This commit is contained in:
Daniel García 2018-03-01 14:36:39 +01:00
parent dfefbf1f31
commit e2f7f56a81
3 changed files with 75 additions and 151 deletions

View file

@ -4,10 +4,6 @@ version = "0.1.0"
authors = ["Daniel García <dani-garcia@users.noreply.github.com>"]
[dependencies]
# Test framework, similar to rspec
stainless = "0.1.12"
# Web framework for nightly with a focus on ease-of-use, expressibility, and speed.
rocket = { version = "0.3.6", features = ["tls"] }
rocket_codegen = "0.3.6"
@ -17,12 +13,12 @@ rocket_contrib = "0.3.6"
reqwest = "0.8.5"
# multipart/form-data support
multipart = "0.14.1"
multipart = "0.14.2"
# A generic serialization/deserialization framework
serde = "1.0.27"
serde_derive = "1.0.27"
serde_json = "1.0.9"
serde_json = "1.0.10"
# A safe, extensible ORM and Query builder
# If tables need more than 16 columns, add feature "large-tables"
@ -53,7 +49,7 @@ data-encoding = "2.1.1"
jsonwebtoken = "4.0.0"
# A `dotenv` implementation for Rust
dotenv = { version = "0.10.1", default-features = false }
dotenv = { version = "0.11.0", default-features = false }
# Lazy static macro
lazy_static = "1.0.0"