mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-22 13:16:39 +00:00
Updated dependencies and removed deprecated Diesel feature
This commit is contained in:
parent
25b63d3e6b
commit
b4a42054f9
16
Cargo.toml
16
Cargo.toml
@ -16,24 +16,22 @@ reqwest = "0.8.5"
|
||||
multipart = "0.14.2"
|
||||
|
||||
# A generic serialization/deserialization framework
|
||||
serde = "1.0.33"
|
||||
serde_derive = "1.0.33"
|
||||
serde_json = "1.0.12"
|
||||
serde = "1.0.39"
|
||||
serde_derive = "1.0.39"
|
||||
serde_json = "1.0.15"
|
||||
|
||||
# A safe, extensible ORM and Query builder
|
||||
# "large-tables" is needed for tables with more than 16 columns, the next version of diesel will
|
||||
# default to 32 column tables by default and deprecate large-tables, so remove this when updating
|
||||
diesel = { version = "1.1.1", features = ["sqlite", "chrono", "r2d2", "large-tables"] }
|
||||
diesel_migrations = { version = "1.1.0", features = ["sqlite"] }
|
||||
diesel = { version = "1.2.2", features = ["sqlite", "chrono", "r2d2"] }
|
||||
diesel_migrations = { version = "1.2.0", features = ["sqlite"] }
|
||||
|
||||
# Crypto library
|
||||
ring = { version = "= 0.11.0", features = ["rsa_signing"] }
|
||||
|
||||
# UUID generation
|
||||
uuid = { version = "0.6.2", features = ["v4"] }
|
||||
uuid = { version = "0.6.3", features = ["v4"] }
|
||||
|
||||
# Date and time library for Rust
|
||||
chrono = "0.4.0"
|
||||
chrono = "0.4.2"
|
||||
|
||||
# TOTP library
|
||||
oath = "0.10.2"
|
||||
|
Loading…
Reference in New Issue
Block a user