2018-02-10 00:00:55 +00:00
|
|
|
[package]
|
2021-04-27 21:18:32 +00:00
|
|
|
name = "vaultwarden"
|
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>"]
|
2021-11-05 18:18:54 +00:00
|
|
|
edition = "2021"
|
2023-01-09 15:49:26 +00:00
|
|
|
rust-version = "1.61.0"
|
2021-09-22 18:26:48 +00:00
|
|
|
resolver = "2"
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2021-04-27 21:18:32 +00:00
|
|
|
repository = "https://github.com/dani-garcia/vaultwarden"
|
2018-12-29 23:04:22 +00:00
|
|
|
readme = "README.md"
|
2022-06-16 13:13:10 +00:00
|
|
|
license = "AGPL-3.0-only"
|
2018-12-29 23:04:22 +00:00
|
|
|
publish = false
|
|
|
|
build = "build.rs"
|
|
|
|
|
2018-12-06 19:35:25 +00:00
|
|
|
[features]
|
2021-11-07 17:53:39 +00:00
|
|
|
# default = ["sqlite"]
|
2019-03-29 19:27:20 +00:00
|
|
|
# Empty to keep compatibility, prefer to set USE_SYSLOG=true
|
|
|
|
enable_syslog = []
|
2019-05-27 20:58:52 +00:00
|
|
|
mysql = ["diesel/mysql", "diesel_migrations/mysql"]
|
2020-01-18 19:09:52 +00:00
|
|
|
postgresql = ["diesel/postgres", "diesel_migrations/postgres"]
|
2019-05-27 21:31:56 +00:00
|
|
|
sqlite = ["diesel/sqlite", "diesel_migrations/sqlite", "libsqlite3-sys"]
|
2020-09-25 21:23:13 +00:00
|
|
|
# Enable to use a vendored and statically linked openssl
|
|
|
|
vendored_openssl = ["openssl/vendored"]
|
2022-03-20 17:51:24 +00:00
|
|
|
# Enable MiMalloc memory allocator to replace the default malloc
|
|
|
|
# This can improve performance for Alpine builds
|
|
|
|
enable_mimalloc = ["mimalloc"]
|
2022-12-03 17:25:59 +00:00
|
|
|
# This is a development dependency, and should only be used during development!
|
|
|
|
# It enables the usage of the diesel_logger crate, which is able to output the generated queries.
|
|
|
|
# You also need to set an env variable `QUERY_LOGGER=1` to fully activate this so you do not have to re-compile
|
|
|
|
# if you want to turn off the logging for a specific run.
|
|
|
|
query_logger = ["diesel_logger"]
|
2018-12-06 19:35:25 +00:00
|
|
|
|
2020-07-14 21:44:01 +00:00
|
|
|
# Enable unstable features, requires nightly
|
2020-09-11 21:52:20 +00:00
|
|
|
# Currently only used to enable rusts official ip support
|
2020-07-14 21:44:01 +00:00
|
|
|
unstable = []
|
|
|
|
|
2019-04-02 20:35:22 +00:00
|
|
|
[target."cfg(not(windows))".dependencies]
|
2022-02-07 21:26:22 +00:00
|
|
|
# Logging
|
2022-04-23 16:18:15 +00:00
|
|
|
syslog = "6.0.1" # Needs to be v4 until fern is updated
|
2019-04-02 20:35:22 +00:00
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
[dependencies]
|
2022-02-07 21:26:22 +00:00
|
|
|
# Logging
|
2022-05-04 19:13:05 +00:00
|
|
|
log = "0.4.17"
|
2022-04-23 16:18:15 +00:00
|
|
|
fern = { version = "0.6.1", features = ["syslog-6"] }
|
2022-10-09 15:40:45 +00:00
|
|
|
tracing = { version = "0.1.37", features = ["log"] } # Needed to have lettre and webauthn-rs trace logging to work
|
2022-05-04 19:13:05 +00:00
|
|
|
|
2022-12-15 16:15:48 +00:00
|
|
|
backtrace = "0.3.67" # Logging panics to logfile instead stderr only
|
2021-11-07 17:53:39 +00:00
|
|
|
|
2022-02-07 21:26:22 +00:00
|
|
|
# A `dotenv` implementation for Rust
|
2022-05-20 21:39:47 +00:00
|
|
|
dotenvy = { version = "0.15.6", default-features = false }
|
2021-05-16 13:29:13 +00:00
|
|
|
|
2022-02-07 21:26:22 +00:00
|
|
|
# Lazy initialization
|
2023-01-09 15:49:26 +00:00
|
|
|
once_cell = "1.17.0"
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2022-02-07 21:26:22 +00:00
|
|
|
# Numerical libraries
|
2022-05-04 19:13:05 +00:00
|
|
|
num-traits = "0.2.15"
|
2022-02-07 21:26:22 +00:00
|
|
|
num-derive = "0.3.3"
|
|
|
|
|
|
|
|
# Web framework
|
2022-05-11 20:03:07 +00:00
|
|
|
rocket = { version = "0.5.0-rc.2", features = ["tls", "json"], default-features = false }
|
2018-08-30 15:43:46 +00:00
|
|
|
|
2022-02-07 21:26:22 +00:00
|
|
|
# WebSockets libraries
|
2022-12-01 16:18:29 +00:00
|
|
|
tokio-tungstenite = "0.18.0"
|
2022-02-07 21:26:22 +00:00
|
|
|
rmpv = "1.0.0" # MessagePack library
|
2023-02-08 16:13:14 +00:00
|
|
|
|
|
|
|
# Concurrent HashMap used for WebSocket messaging and favicons
|
2022-09-04 21:18:27 +00:00
|
|
|
dashmap = "5.4.0"
|
2018-08-30 15:43:46 +00:00
|
|
|
|
2022-02-07 21:26:22 +00:00
|
|
|
# Async futures
|
2023-02-08 16:13:14 +00:00
|
|
|
futures = "0.3.26"
|
|
|
|
tokio = { version = "1.25.0", features = ["rt-multi-thread", "fs", "io-util", "parking_lot", "time", "signal"] }
|
2018-08-30 15:43:46 +00:00
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
# A generic serialization/deserialization framework
|
2023-01-09 15:49:26 +00:00
|
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
2023-02-08 16:13:14 +00:00
|
|
|
serde_json = "1.0.93"
|
2018-12-06 19:35:25 +00:00
|
|
|
|
2018-02-10 00:00:55 +00:00
|
|
|
# A safe, extensible ORM and Query builder
|
2023-01-24 19:39:09 +00:00
|
|
|
diesel = { version = "2.0.3", features = ["chrono", "r2d2"] }
|
2022-05-20 21:39:47 +00:00
|
|
|
diesel_migrations = "2.0.0"
|
2022-12-03 17:25:59 +00:00
|
|
|
diesel_logger = { version = "0.2.0", optional = true }
|
2019-05-26 21:02:41 +00:00
|
|
|
|
2023-02-08 16:13:14 +00:00
|
|
|
# Bundled/Static SQLite
|
2022-11-04 11:56:02 +00:00
|
|
|
libsqlite3-sys = { version = "0.25.2", features = ["bundled"], optional = true }
|
2018-05-07 19:33:54 +00:00
|
|
|
|
2020-08-22 23:07:53 +00:00
|
|
|
# Crypto-related libraries
|
2022-06-04 13:13:10 +00:00
|
|
|
rand = { version = "0.8.5", features = ["small_rng"] }
|
2021-02-06 15:49:28 +00:00
|
|
|
ring = "0.16.20"
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
# UUID generation
|
2023-02-08 16:13:14 +00:00
|
|
|
uuid = { version = "1.3.0", features = ["v4"] }
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2020-07-08 04:30:18 +00:00
|
|
|
# Date and time libraries
|
2022-12-01 16:18:29 +00:00
|
|
|
chrono = { version = "0.4.23", features = ["clock", "serde"], default-features = false }
|
|
|
|
chrono-tz = "0.8.1"
|
2022-11-04 11:56:02 +00:00
|
|
|
time = "0.3.17"
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2021-04-03 03:16:49 +00:00
|
|
|
# Job scheduler
|
2023-02-08 16:13:14 +00:00
|
|
|
job_scheduler_ng = "2.0.4"
|
2021-04-03 03:16:49 +00:00
|
|
|
|
2022-02-07 21:26:22 +00:00
|
|
|
# Data encoding library Hex/Base32/Base64
|
2022-12-10 16:51:05 +00:00
|
|
|
data-encoding = "2.3.3"
|
2018-02-10 00:00:55 +00:00
|
|
|
|
|
|
|
# JWT library
|
2022-12-10 16:51:05 +00:00
|
|
|
jsonwebtoken = "8.2.0"
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2022-02-07 21:26:22 +00:00
|
|
|
# TOTP library
|
2022-05-20 18:37:32 +00:00
|
|
|
totp-lite = "2.0.0"
|
2018-07-12 19:46:50 +00:00
|
|
|
|
2018-11-16 01:34:17 +00:00
|
|
|
# Yubico Library
|
2022-05-11 20:03:07 +00:00
|
|
|
yubico = { version = "0.11.0", features = ["online-tokio"], default-features = false }
|
2018-11-16 01:34:17 +00:00
|
|
|
|
2022-03-27 15:25:04 +00:00
|
|
|
# WebAuthn libraries
|
2022-02-07 21:26:22 +00:00
|
|
|
webauthn-rs = "0.3.2"
|
2018-02-10 00:00:55 +00:00
|
|
|
|
2023-02-08 16:13:14 +00:00
|
|
|
# Handling of URL's for WebAuthn and favicons
|
2022-09-22 19:30:34 +00:00
|
|
|
url = "2.3.1"
|
2018-07-12 19:46:50 +00:00
|
|
|
|
2023-02-08 16:13:14 +00:00
|
|
|
# Email libraries
|
|
|
|
lettre = { version = "0.10.2", features = ["smtp-transport", "sendmail-transport", "builder", "serde", "tokio1-native-tls", "hostname", "tracing", "tokio1"], default-features = false }
|
2022-09-22 19:30:34 +00:00
|
|
|
percent-encoding = "2.2.0" # URL encoding library used for URL's in the emails
|
2022-11-04 11:56:02 +00:00
|
|
|
email_address = "0.2.4"
|
2018-08-15 06:32:19 +00:00
|
|
|
|
2023-02-08 16:13:14 +00:00
|
|
|
# HTML Template library
|
2023-01-09 15:49:26 +00:00
|
|
|
handlebars = { version = "4.3.6", features = ["dir_source"] }
|
2019-01-13 00:39:29 +00:00
|
|
|
|
2023-02-08 16:13:14 +00:00
|
|
|
# HTTP client (Used for favicons, version check, DUO and HIBP API)
|
2023-01-24 19:39:09 +00:00
|
|
|
reqwest = { version = "0.11.14", features = ["stream", "json", "gzip", "brotli", "socks", "cookies", "trust-dns"] }
|
2022-02-07 21:26:22 +00:00
|
|
|
|
2023-02-08 16:13:14 +00:00
|
|
|
# Favicon extraction libraries
|
2022-06-21 16:47:01 +00:00
|
|
|
html5gum = "0.5.2"
|
2023-01-09 15:49:26 +00:00
|
|
|
regex = { version = "1.7.1", features = ["std", "perf", "unicode-perl"], default-features = false }
|
2022-09-22 19:30:34 +00:00
|
|
|
data-url = "0.2.0"
|
2023-02-08 16:13:14 +00:00
|
|
|
bytes = "1.4.0"
|
|
|
|
|
|
|
|
# Cache function results (Used for version check and favicon fetching)
|
2023-01-09 15:49:26 +00:00
|
|
|
cached = "0.42.0"
|
2022-02-07 21:26:22 +00:00
|
|
|
|
|
|
|
# Used for custom short lived cookie jar during favicon extraction
|
2023-01-09 15:49:26 +00:00
|
|
|
cookie = "0.16.2"
|
2022-11-04 11:56:02 +00:00
|
|
|
cookie_store = "0.19.0"
|
2019-01-27 14:39:19 +00:00
|
|
|
|
2023-02-08 16:13:14 +00:00
|
|
|
# Used by U2F, JWT and PostgreSQL
|
2023-01-09 15:49:26 +00:00
|
|
|
openssl = "0.10.45"
|
2019-09-12 20:12:22 +00:00
|
|
|
|
2020-03-02 19:57:06 +00:00
|
|
|
# CLI argument parsing
|
2022-06-04 17:16:36 +00:00
|
|
|
pico-args = "0.5.0"
|
2020-03-02 19:57:06 +00:00
|
|
|
|
2020-08-18 15:15:44 +00:00
|
|
|
# Macro ident concatenation
|
2023-01-09 15:49:26 +00:00
|
|
|
paste = "1.0.11"
|
2022-12-01 16:18:29 +00:00
|
|
|
governor = "0.5.1"
|
2020-08-18 15:15:44 +00:00
|
|
|
|
2022-11-07 16:13:34 +00:00
|
|
|
# Check client versions for specific features.
|
2023-01-09 15:49:26 +00:00
|
|
|
semver = "1.0.16"
|
2022-11-07 16:13:34 +00:00
|
|
|
|
2022-03-20 17:51:24 +00:00
|
|
|
# Allow overriding the default memory allocator
|
|
|
|
# Mainly used for the musl builds, since the default musl malloc is very slow
|
2023-01-09 15:49:26 +00:00
|
|
|
mimalloc = { version = "0.1.34", features = ["secure"], default-features = false, optional = true }
|
2023-01-25 21:54:50 +00:00
|
|
|
which = "4.4.0"
|
2022-03-20 17:51:24 +00:00
|
|
|
|
2022-02-22 19:48:00 +00:00
|
|
|
# Strip debuginfo from the release builds
|
|
|
|
# Also enable thin LTO for some optimizations
|
|
|
|
[profile.release]
|
|
|
|
strip = "debuginfo"
|
|
|
|
lto = "thin"
|