2018-02-10 00:00:55 +00:00
|
|
|
[package]
|
|
|
|
name = "bitwarden_rs"
|
2018-08-21 20:21:54 +00:00
|
|
|
version = "1.0.0"
|
2018-02-10 00:00:55 +00:00
|
|
|
authors = ["Daniel García <dani-garcia@users.noreply.github.com>"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# Web framework for nightly with a focus on ease-of-use, expressibility, and speed.
|
2018-11-19 19:21:02 +00:00
|
|
|
rocket = { version = "0.4.0-rc.1", features = ["tls"], default-features = false }
|
2018-10-10 18:40:39 +00:00
|
|
|
rocket_contrib = "0.4.0-rc.1"
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
# HTTP client
|
2018-11-19 18:52:43 +00:00
|
|
|
reqwest = "0.9.5"
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
# multipart/form-data support
|
2018-09-13 14:04:00 +00:00
|
|
|
multipart = "0.15.3"
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-08-30 15:43:46 +00:00
|
|
|
# WebSockets library
|
2018-10-10 18:40:39 +00:00
|
|
|
ws = "0.7.9"
|
2018-08-30 15:43:46 +00:00
|
|
|
|
|
|
|
# MessagePack library
|
|
|
|
rmpv = "0.4.0"
|
|
|
|
|
|
|
|
# Concurrent hashmap implementation
|
|
|
|
chashmap = "2.2.0"
|
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
# A generic serialization/deserialization framework
|
2018-10-10 18:40:39 +00:00
|
|
|
serde = "1.0.80"
|
|
|
|
serde_derive = "1.0.80"
|
2018-11-19 18:52:43 +00:00
|
|
|
serde_json = "1.0.33"
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
# A safe, extensible ORM and Query builder
|
2018-09-19 19:43:03 +00:00
|
|
|
diesel = { version = "1.3.3", features = ["sqlite", "chrono", "r2d2"] }
|
2018-06-12 15:24:29 +00:00
|
|
|
diesel_migrations = { version = "1.3.0", features = ["sqlite"] }
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-05-07 19:33:54 +00:00
|
|
|
# Bundled SQLite
|
2018-08-24 15:07:11 +00:00
|
|
|
libsqlite3-sys = { version = "0.9.3", features = ["bundled"] }
|
2018-05-07 19:33:54 +00:00
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
# Crypto library
|
2018-11-19 18:52:43 +00:00
|
|
|
ring = { version = "0.13.5", features = ["rsa_signing"] }
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
# UUID generation
|
2018-09-19 19:43:03 +00:00
|
|
|
uuid = { version = "0.7.1", features = ["v4"] }
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
# Date and time library for Rust
|
2018-08-30 15:43:46 +00:00
|
|
|
chrono = "0.4.6"
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
# TOTP library
|
|
|
|
oath = "0.10.2"
|
|
|
|
|
|
|
|
# Data encoding library
|
|
|
|
data-encoding = "2.1.1"
|
|
|
|
|
|
|
|
# JWT library
|
2018-10-10 18:40:39 +00:00
|
|
|
jsonwebtoken = "5.0.1"
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-07-12 19:46:50 +00:00
|
|
|
# U2F library
|
|
|
|
u2f = "0.1.2"
|
|
|
|
|
2018-11-16 01:34:17 +00:00
|
|
|
# Yubico Library
|
2018-11-19 19:42:22 +00:00
|
|
|
yubico = { version = "=0.4.0", features = ["online"], default-features = false }
|
2018-11-16 01:34:17 +00:00
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
# A `dotenv` implementation for Rust
|
2018-06-01 13:34:26 +00:00
|
|
|
dotenv = { version = "0.13.0", default-features = false }
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
# Lazy static macro
|
2018-11-19 19:21:02 +00:00
|
|
|
lazy_static = { version = "1.2.0", features = ["nightly"] }
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2018-07-12 19:46:50 +00:00
|
|
|
# Numerical libraries
|
2018-09-19 19:43:03 +00:00
|
|
|
num-traits = "0.2.6"
|
2018-10-03 22:01:04 +00:00
|
|
|
num-derive = "0.2.3"
|
2018-07-12 19:46:50 +00:00
|
|
|
|
2018-09-13 13:59:45 +00:00
|
|
|
# Email libraries
|
2018-09-19 19:45:50 +00:00
|
|
|
lettre = "0.9.0"
|
|
|
|
lettre_email = "0.9.0"
|
2018-10-10 18:40:39 +00:00
|
|
|
native-tls = "0.2.2"
|
2018-08-15 06:32:19 +00:00
|
|
|
|
2018-08-30 15:43:46 +00:00
|
|
|
# Number encoding library
|
2018-10-10 18:40:39 +00:00
|
|
|
byteorder = "1.2.7"
|
2018-08-30 15:43:46 +00:00
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
[patch.crates-io]
|
2018-10-10 18:40:39 +00:00
|
|
|
# Add support for Timestamp type
|
2018-08-30 15:43:46 +00:00
|
|
|
rmp = { git = 'https://github.com/dani-garcia/msgpack-rust' }
|
2018-10-10 18:40:39 +00:00
|
|
|
|
|
|
|
# Use new native_tls version 0.2
|
2018-10-03 22:01:04 +00:00
|
|
|
lettre = { git = 'https://github.com/lettre/lettre', rev = 'c988b1760ad81' }
|
|
|
|
lettre_email = { git = 'https://github.com/lettre/lettre', rev = 'c988b1760ad81' }
|
2018-07-12 19:46:50 +00:00
|
|
|
|
|
|
|
# Version 0.1.2 from crates.io lacks a commit that fixes a certificate error
|
2018-10-10 18:40:39 +00:00
|
|
|
u2f = { git = 'https://github.com/wisespace-io/u2f-rs', rev = '75b9fa5afb4c5' }
|
2018-11-16 18:28:20 +00:00
|
|
|
|
|
|
|
# Allows optional libusb support
|
|
|
|
yubico = { git = 'https://github.com/dani-garcia/yubico-rs' }
|