Newer
Older
authors = ["Daniel García <dani-garcia@users.noreply.github.com>"]

Daniel García
committed
repository = "https://github.com/dani-garcia/bitwarden_rs"
readme = "README.md"
license = "GPL-3.0-only"
publish = false
build = "build.rs"
[features]
enable_syslog = ["syslog", "fern/syslog-4"]
[dependencies]
# Web framework for nightly with a focus on ease-of-use, expressibility, and speed.
rocket = { version = "0.4.0", features = ["tls"], default-features = false }
rocket_contrib = "0.4.0"
reqwest = "0.9.10"
# A generic serialization/deserialization framework
serde = "1.0.88"
serde_derive = "1.0.88"
diesel = { version = "1.4.1", features = ["sqlite", "chrono", "r2d2"] }
diesel_migrations = { version = "1.4.0", features = ["sqlite"] }

Daniel García
committed
# Bundled SQLite
libsqlite3-sys = { version = "0.12.0", features = ["bundled"] }

Daniel García
committed
ring = { version = "0.13.5", features = ["rsa_signing"] }
# TOTP library
oath = "0.10.2"
# Data encoding library
data-encoding = "2.1.2"

Daniel García
committed
# U2F library
u2f = "0.1.4"

Daniel García
committed
yubico = { version = "0.5.1", features = ["online"], default-features = false }
dotenv = { version = "0.13.0", default-features = false }
lazy_static = { version = "1.2.0", features = ["nightly"] }

Daniel García
committed
# More derives

Daniel García
committed

Daniel García
committed
# Numerical libraries

Daniel García
committed
lettre = "0.9.0"
lettre_email = "0.9.0"
# Add support for Timestamp type
rmp = { git = 'https://github.com/dani-garcia/msgpack-rust' }
# Use new native_tls version 0.2
lettre = { git = 'https://github.com/lettre/lettre', rev = 'c988b1760ad81' }
lettre_email = { git = 'https://github.com/lettre/lettre', rev = 'c988b1760ad81' }