2025-11-01 22:21:04 +01:00
|
|
|
[workspace.package]
|
2026-05-17 19:38:49 +02:00
|
|
|
edition = "2024"
|
2026-07-24 17:33:10 +02:00
|
|
|
rust-version = "1.95.0"
|
2025-11-01 22:21:04 +01:00
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
|
repository = "https://github.com/dani-garcia/vaultwarden"
|
|
|
|
|
publish = false
|
|
|
|
|
|
2025-04-09 21:21:10 +02:00
|
|
|
[workspace]
|
|
|
|
|
members = ["macros"]
|
2025-01-09 18:37:23 +01:00
|
|
|
|
2018-02-10 01:00:55 +01:00
|
|
|
[package]
|
2021-04-27 23:18:32 +02:00
|
|
|
name = "vaultwarden"
|
2018-08-21 21:21:54 +01:00
|
|
|
version = "1.0.0"
|
2018-02-10 01:00:55 +01:00
|
|
|
authors = ["Daniel García <dani-garcia@users.noreply.github.com>"]
|
2018-12-30 00:04:22 +01:00
|
|
|
readme = "README.md"
|
|
|
|
|
build = "build.rs"
|
2025-11-01 22:21:04 +01:00
|
|
|
repository.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
rust-version.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
publish.workspace = true
|
2018-12-30 00:04:22 +01:00
|
|
|
|
2018-12-06 20:35:25 +01:00
|
|
|
[features]
|
2025-10-29 21:04:30 +01:00
|
|
|
default = [
|
2026-05-17 19:38:49 +02:00
|
|
|
# "sqlite",
|
|
|
|
|
# "sqlite_system",
|
2025-10-29 21:04:30 +01:00
|
|
|
# "mysql",
|
|
|
|
|
# "postgresql",
|
|
|
|
|
]
|
2019-03-29 20:27:20 +01:00
|
|
|
# Empty to keep compatibility, prefer to set USE_SYSLOG=true
|
|
|
|
|
enable_syslog = []
|
2026-04-29 22:59:18 +02:00
|
|
|
# Please enable at least one of these DB backends.
|
2025-04-05 17:58:32 +02:00
|
|
|
mysql = ["diesel/mysql", "diesel_migrations/mysql"]
|
2020-01-18 20:09:52 +01:00
|
|
|
postgresql = ["diesel/postgres", "diesel_migrations/postgres"]
|
2026-05-17 19:38:49 +02:00
|
|
|
sqlite_system = ["diesel/sqlite", "diesel_migrations/sqlite"] # Dynamically link SQLite
|
|
|
|
|
sqlite = ["sqlite_system", "libsqlite3-sys/bundled"] # Statically link SQLite into the binary instead of dynamically.
|
2020-09-25 23:23:13 +02:00
|
|
|
# Enable to use a vendored and statically linked openssl
|
|
|
|
|
vendored_openssl = ["openssl/vendored"]
|
2022-03-20 18:51:24 +01:00
|
|
|
# Enable MiMalloc memory allocator to replace the default malloc
|
|
|
|
|
# This can improve performance for Alpine builds
|
2024-08-23 22:06:11 +02:00
|
|
|
enable_mimalloc = ["dep:mimalloc"]
|
2026-05-17 19:38:49 +02:00
|
|
|
s3 = [
|
|
|
|
|
"opendal/services-s3",
|
|
|
|
|
"dep:aws-config",
|
|
|
|
|
"dep:aws-credential-types",
|
|
|
|
|
"dep:aws-smithy-runtime-api",
|
|
|
|
|
"dep:http",
|
|
|
|
|
"dep:reqsign-aws-v4",
|
|
|
|
|
"dep:reqsign-core",
|
|
|
|
|
]
|
2018-12-06 20:35:25 +01:00
|
|
|
|
2025-08-08 23:22:22 +02:00
|
|
|
# OIDC specific features
|
|
|
|
|
oidc-accept-rfc3339-timestamps = ["openidconnect/accept-rfc3339-timestamps"]
|
|
|
|
|
oidc-accept-string-booleans = ["openidconnect/accept-string-booleans"]
|
|
|
|
|
|
2020-07-14 23:44:01 +02:00
|
|
|
# Enable unstable features, requires nightly
|
2020-09-11 23:52:20 +02:00
|
|
|
# Currently only used to enable rusts official ip support
|
2020-07-14 23:44:01 +02:00
|
|
|
unstable = []
|
|
|
|
|
|
2024-10-06 13:49:00 +02:00
|
|
|
[target."cfg(unix)".dependencies]
|
2022-02-07 22:26:22 +01:00
|
|
|
# Logging
|
2024-12-05 22:10:59 +01:00
|
|
|
syslog = "7.0.0"
|
2019-04-02 22:35:22 +02:00
|
|
|
|
2018-02-10 01:00:55 +01:00
|
|
|
[dependencies]
|
2025-01-09 18:37:23 +01:00
|
|
|
macros = { path = "./macros" }
|
|
|
|
|
|
2022-02-07 22:26:22 +01:00
|
|
|
# Logging
|
2026-07-08 22:10:29 +02:00
|
|
|
log = "0.4.33"
|
2024-12-15 23:13:29 +01:00
|
|
|
fern = { version = "0.7.1", features = ["syslog-7", "reopen-1"] }
|
2026-05-17 19:38:49 +02:00
|
|
|
# We need the `log` feature for `tracing` to enable logging for several crates to work, like lettre or webauthn-rs
|
|
|
|
|
tracing = { version = "0.1.44", features = ["log"] }
|
2022-05-04 21:13:05 +02:00
|
|
|
|
2022-02-07 22:26:22 +01:00
|
|
|
# A `dotenv` implementation for Rust
|
2023-03-22 21:30:07 +01:00
|
|
|
dotenvy = { version = "0.15.7", default-features = false }
|
2021-05-16 15:29:13 +02:00
|
|
|
|
2022-02-07 22:26:22 +01:00
|
|
|
# Numerical libraries
|
2024-05-19 20:30:34 +02:00
|
|
|
num-traits = "0.2.19"
|
2026-07-24 17:33:10 +02:00
|
|
|
num-derive = "0.5.1"
|
2025-12-29 21:27:12 +00:00
|
|
|
bigdecimal = "0.4.10"
|
2022-02-07 22:26:22 +01:00
|
|
|
|
|
|
|
|
# Web framework
|
2026-05-17 19:38:49 +02:00
|
|
|
rocket = { version = "0.5.1", default-features = false, features = ["json", "tls"] }
|
|
|
|
|
rocket_ws = { version = "0.1.1" }
|
2018-08-30 17:43:46 +02:00
|
|
|
|
2022-02-07 22:26:22 +01:00
|
|
|
# WebSockets libraries
|
2025-12-29 21:27:12 +00:00
|
|
|
rmpv = "1.3.1" # MessagePack library
|
2023-02-08 17:13:14 +01:00
|
|
|
|
|
|
|
|
# Concurrent HashMap used for WebSocket messaging and favicons
|
2026-06-05 21:52:52 +02:00
|
|
|
dashmap = "6.2.1"
|
2018-08-30 17:43:46 +02:00
|
|
|
|
2022-02-07 22:26:22 +01:00
|
|
|
# Async futures
|
2026-07-24 17:33:10 +02:00
|
|
|
futures = "0.3.33"
|
|
|
|
|
tokio = { version = "1.53.1", features = [
|
2026-05-17 19:38:49 +02:00
|
|
|
"fs",
|
|
|
|
|
"io-util",
|
|
|
|
|
"net",
|
|
|
|
|
"parking_lot",
|
|
|
|
|
"rt-multi-thread",
|
|
|
|
|
"signal",
|
|
|
|
|
"time",
|
|
|
|
|
] }
|
2026-07-24 17:33:10 +02:00
|
|
|
tokio-util = { version = "0.7.19", features = ["compat"] }
|
2018-08-30 17:43:46 +02:00
|
|
|
|
2018-02-10 01:00:55 +01:00
|
|
|
# A generic serialization/deserialization framework
|
2026-07-24 17:33:10 +02:00
|
|
|
serde = { version = "1.0.229", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.151"
|
2018-12-06 20:35:25 +01:00
|
|
|
|
2018-02-10 01:00:55 +01:00
|
|
|
# A safe, extensible ORM and Query builder
|
2026-08-01 03:39:45 +02:00
|
|
|
diesel = { version = "2.3.11", features = ["chrono", "r2d2", "numeric", "64-column-tables"] }
|
2026-04-29 22:10:26 +02:00
|
|
|
diesel_migrations = "2.3.2"
|
2019-05-26 23:02:41 +02:00
|
|
|
|
2026-05-17 19:38:49 +02:00
|
|
|
derive_more = { version = "2.1.1", features = [
|
|
|
|
|
"as_ref",
|
|
|
|
|
"deref",
|
|
|
|
|
"display",
|
|
|
|
|
"from",
|
|
|
|
|
"into",
|
|
|
|
|
] }
|
2026-07-08 22:10:29 +02:00
|
|
|
diesel-derive-newtype = "2.1.3"
|
2025-01-09 18:37:23 +01:00
|
|
|
|
2026-04-29 22:59:18 +02:00
|
|
|
# SQLite, statically bundled unless the `sqlite_system` feature is enabled
|
|
|
|
|
libsqlite3-sys = { version = "0.37.0", optional = true }
|
2018-05-07 21:33:54 +02:00
|
|
|
|
2020-08-22 16:07:53 -07:00
|
|
|
# Crypto-related libraries
|
2026-07-08 22:10:29 +02:00
|
|
|
rand = "0.10.2"
|
2025-03-17 23:02:02 +01:00
|
|
|
ring = "0.17.14"
|
Misc fixes and updates (#7558)
* Update GHA and pre-commit
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update admin diagnostics
Added a check if the templates are overridden and return which specific folder, `admin`, `email` or `scss`.
This way we could more quickly point users to possible outdated templates which they are using.
Also updated the Support String to use some emojis so we should be able to quicker see if there is something wrong.
Just checking `true` or `false` could be difficult sometimes, and sometimes what we had as `false` wasn't bad either.
Also adjusted the eslint comments so it will work with the latest version of eslint.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix updating collections for a cipher
The newer clients expect a `cipherDetails` response on the `collections-admin` endpoints.
Without it, the client will cause an error and stops handling the update correctly.
This will fix this by returning the cipher json.
Fixes #7545
Fixes #7546
Signed-off-by: BlackDex <black.dex@gmail.com>
* Cache CSS file in a different way
Currently we set a cache ttl of 24 hours, and users need to do a force refresh if there is anything changed to the CSS file.
In the past we have had several issue reported which were related to a still cached CSS file.
This commit will change the caching and also cache the generated CSS file in memory.
Instead of letting the browser cache it for 24 hours we generate an ETag, this is just a hash of the contents.
This ETag is returned by the browser during a request, and we can match this, and if so, just return a `304` `Not Modified`.
If the ETag is not known, we return the new content.
This should make simple refreshes by clients get updated settings or a new version of Vaultwarden which has other CSS entries get updated instantly.
If a user does a hard refresh, we will not receive the ETag and the content will be served.
The same goes if someone has the `reload_templates` feature enabled, since then we should not cache anyway.
If someone adjust settings via the `/admin` interface, the cache will be invalidated and a new CSS will be generated.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix showing events for a specific user
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update crates and adjust code.
- Updated opendal and adjusted code where needed.
- Updated yubico_ng and adjusted code where needed.
This version now supports using an own HttpClient and it pulls in no reqwest dependency anymore.
Now it will use our own client which uses custom hickory DNS and other features.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update web-vault to v2026.7.0
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix hadolint warnings
Signed-off-by: BlackDex <black.dex@gmail.com>
---------
Signed-off-by: BlackDex <black.dex@gmail.com>
2026-08-06 20:22:12 +02:00
|
|
|
rustls = { version = "0.23.43", features = ["ring", "std"], default-features = false }
|
2025-03-15 18:33:17 +00:00
|
|
|
subtle = "2.6.1"
|
2018-02-10 01:00:55 +01:00
|
|
|
|
|
|
|
|
# UUID generation
|
2026-07-24 17:33:10 +02:00
|
|
|
uuid = { version = "1.24.0", features = ["v4"] }
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2020-07-07 21:30:18 -07:00
|
|
|
# Date and time libraries
|
2026-06-05 21:52:52 +02:00
|
|
|
chrono = { version = "0.4.45", default-features = false, features = ["clock", "serde"] }
|
2025-07-13 00:48:56 +02:00
|
|
|
chrono-tz = "0.10.4"
|
Misc fixes and updates (#7558)
* Update GHA and pre-commit
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update admin diagnostics
Added a check if the templates are overridden and return which specific folder, `admin`, `email` or `scss`.
This way we could more quickly point users to possible outdated templates which they are using.
Also updated the Support String to use some emojis so we should be able to quicker see if there is something wrong.
Just checking `true` or `false` could be difficult sometimes, and sometimes what we had as `false` wasn't bad either.
Also adjusted the eslint comments so it will work with the latest version of eslint.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix updating collections for a cipher
The newer clients expect a `cipherDetails` response on the `collections-admin` endpoints.
Without it, the client will cause an error and stops handling the update correctly.
This will fix this by returning the cipher json.
Fixes #7545
Fixes #7546
Signed-off-by: BlackDex <black.dex@gmail.com>
* Cache CSS file in a different way
Currently we set a cache ttl of 24 hours, and users need to do a force refresh if there is anything changed to the CSS file.
In the past we have had several issue reported which were related to a still cached CSS file.
This commit will change the caching and also cache the generated CSS file in memory.
Instead of letting the browser cache it for 24 hours we generate an ETag, this is just a hash of the contents.
This ETag is returned by the browser during a request, and we can match this, and if so, just return a `304` `Not Modified`.
If the ETag is not known, we return the new content.
This should make simple refreshes by clients get updated settings or a new version of Vaultwarden which has other CSS entries get updated instantly.
If a user does a hard refresh, we will not receive the ETag and the content will be served.
The same goes if someone has the `reload_templates` feature enabled, since then we should not cache anyway.
If someone adjust settings via the `/admin` interface, the cache will be invalidated and a new CSS will be generated.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix showing events for a specific user
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update crates and adjust code.
- Updated opendal and adjusted code where needed.
- Updated yubico_ng and adjusted code where needed.
This version now supports using an own HttpClient and it pulls in no reqwest dependency anymore.
Now it will use our own client which uses custom hickory DNS and other features.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update web-vault to v2026.7.0
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix hadolint warnings
Signed-off-by: BlackDex <black.dex@gmail.com>
---------
Signed-off-by: BlackDex <black.dex@gmail.com>
2026-08-06 20:22:12 +02:00
|
|
|
time = "0.3.55"
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2021-04-02 20:16:49 -07:00
|
|
|
# Job scheduler
|
Misc fixes and updates (#7558)
* Update GHA and pre-commit
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update admin diagnostics
Added a check if the templates are overridden and return which specific folder, `admin`, `email` or `scss`.
This way we could more quickly point users to possible outdated templates which they are using.
Also updated the Support String to use some emojis so we should be able to quicker see if there is something wrong.
Just checking `true` or `false` could be difficult sometimes, and sometimes what we had as `false` wasn't bad either.
Also adjusted the eslint comments so it will work with the latest version of eslint.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix updating collections for a cipher
The newer clients expect a `cipherDetails` response on the `collections-admin` endpoints.
Without it, the client will cause an error and stops handling the update correctly.
This will fix this by returning the cipher json.
Fixes #7545
Fixes #7546
Signed-off-by: BlackDex <black.dex@gmail.com>
* Cache CSS file in a different way
Currently we set a cache ttl of 24 hours, and users need to do a force refresh if there is anything changed to the CSS file.
In the past we have had several issue reported which were related to a still cached CSS file.
This commit will change the caching and also cache the generated CSS file in memory.
Instead of letting the browser cache it for 24 hours we generate an ETag, this is just a hash of the contents.
This ETag is returned by the browser during a request, and we can match this, and if so, just return a `304` `Not Modified`.
If the ETag is not known, we return the new content.
This should make simple refreshes by clients get updated settings or a new version of Vaultwarden which has other CSS entries get updated instantly.
If a user does a hard refresh, we will not receive the ETag and the content will be served.
The same goes if someone has the `reload_templates` feature enabled, since then we should not cache anyway.
If someone adjust settings via the `/admin` interface, the cache will be invalidated and a new CSS will be generated.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix showing events for a specific user
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update crates and adjust code.
- Updated opendal and adjusted code where needed.
- Updated yubico_ng and adjusted code where needed.
This version now supports using an own HttpClient and it pulls in no reqwest dependency anymore.
Now it will use our own client which uses custom hickory DNS and other features.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update web-vault to v2026.7.0
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix hadolint warnings
Signed-off-by: BlackDex <black.dex@gmail.com>
---------
Signed-off-by: BlackDex <black.dex@gmail.com>
2026-08-06 20:22:12 +02:00
|
|
|
job_scheduler_ng = "2.5.0"
|
2021-04-02 20:16:49 -07:00
|
|
|
|
2022-02-07 22:26:22 +01:00
|
|
|
# Data encoding library Hex/Base32/Base64
|
Misc fixes and updates (#7558)
* Update GHA and pre-commit
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update admin diagnostics
Added a check if the templates are overridden and return which specific folder, `admin`, `email` or `scss`.
This way we could more quickly point users to possible outdated templates which they are using.
Also updated the Support String to use some emojis so we should be able to quicker see if there is something wrong.
Just checking `true` or `false` could be difficult sometimes, and sometimes what we had as `false` wasn't bad either.
Also adjusted the eslint comments so it will work with the latest version of eslint.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix updating collections for a cipher
The newer clients expect a `cipherDetails` response on the `collections-admin` endpoints.
Without it, the client will cause an error and stops handling the update correctly.
This will fix this by returning the cipher json.
Fixes #7545
Fixes #7546
Signed-off-by: BlackDex <black.dex@gmail.com>
* Cache CSS file in a different way
Currently we set a cache ttl of 24 hours, and users need to do a force refresh if there is anything changed to the CSS file.
In the past we have had several issue reported which were related to a still cached CSS file.
This commit will change the caching and also cache the generated CSS file in memory.
Instead of letting the browser cache it for 24 hours we generate an ETag, this is just a hash of the contents.
This ETag is returned by the browser during a request, and we can match this, and if so, just return a `304` `Not Modified`.
If the ETag is not known, we return the new content.
This should make simple refreshes by clients get updated settings or a new version of Vaultwarden which has other CSS entries get updated instantly.
If a user does a hard refresh, we will not receive the ETag and the content will be served.
The same goes if someone has the `reload_templates` feature enabled, since then we should not cache anyway.
If someone adjust settings via the `/admin` interface, the cache will be invalidated and a new CSS will be generated.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix showing events for a specific user
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update crates and adjust code.
- Updated opendal and adjusted code where needed.
- Updated yubico_ng and adjusted code where needed.
This version now supports using an own HttpClient and it pulls in no reqwest dependency anymore.
Now it will use our own client which uses custom hickory DNS and other features.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update web-vault to v2026.7.0
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix hadolint warnings
Signed-off-by: BlackDex <black.dex@gmail.com>
---------
Signed-off-by: BlackDex <black.dex@gmail.com>
2026-08-06 20:22:12 +02:00
|
|
|
data-encoding = "2.11.1"
|
2018-02-10 01:00:55 +01:00
|
|
|
|
|
|
|
|
# JWT library
|
2026-07-24 17:33:10 +02:00
|
|
|
jsonwebtoken = { version = "11.0.0", default-features = false, features = ["rust_crypto", "use_pem"] }
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2022-02-07 22:26:22 +01:00
|
|
|
# TOTP library
|
2023-11-15 10:41:14 +01:00
|
|
|
totp-lite = "2.0.1"
|
2018-07-12 21:46:50 +02:00
|
|
|
|
2018-11-15 18:34:17 -07:00
|
|
|
# Yubico Library
|
Misc fixes and updates (#7558)
* Update GHA and pre-commit
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update admin diagnostics
Added a check if the templates are overridden and return which specific folder, `admin`, `email` or `scss`.
This way we could more quickly point users to possible outdated templates which they are using.
Also updated the Support String to use some emojis so we should be able to quicker see if there is something wrong.
Just checking `true` or `false` could be difficult sometimes, and sometimes what we had as `false` wasn't bad either.
Also adjusted the eslint comments so it will work with the latest version of eslint.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix updating collections for a cipher
The newer clients expect a `cipherDetails` response on the `collections-admin` endpoints.
Without it, the client will cause an error and stops handling the update correctly.
This will fix this by returning the cipher json.
Fixes #7545
Fixes #7546
Signed-off-by: BlackDex <black.dex@gmail.com>
* Cache CSS file in a different way
Currently we set a cache ttl of 24 hours, and users need to do a force refresh if there is anything changed to the CSS file.
In the past we have had several issue reported which were related to a still cached CSS file.
This commit will change the caching and also cache the generated CSS file in memory.
Instead of letting the browser cache it for 24 hours we generate an ETag, this is just a hash of the contents.
This ETag is returned by the browser during a request, and we can match this, and if so, just return a `304` `Not Modified`.
If the ETag is not known, we return the new content.
This should make simple refreshes by clients get updated settings or a new version of Vaultwarden which has other CSS entries get updated instantly.
If a user does a hard refresh, we will not receive the ETag and the content will be served.
The same goes if someone has the `reload_templates` feature enabled, since then we should not cache anyway.
If someone adjust settings via the `/admin` interface, the cache will be invalidated and a new CSS will be generated.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix showing events for a specific user
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update crates and adjust code.
- Updated opendal and adjusted code where needed.
- Updated yubico_ng and adjusted code where needed.
This version now supports using an own HttpClient and it pulls in no reqwest dependency anymore.
Now it will use our own client which uses custom hickory DNS and other features.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update web-vault to v2026.7.0
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix hadolint warnings
Signed-off-by: BlackDex <black.dex@gmail.com>
---------
Signed-off-by: BlackDex <black.dex@gmail.com>
2026-08-06 20:22:12 +02:00
|
|
|
yubico_ng = { version = "1.0.0", default-features = false }
|
2018-11-15 18:34:17 -07:00
|
|
|
|
2022-03-27 17:25:04 +02:00
|
|
|
# WebAuthn libraries
|
2025-08-09 00:44:28 +02:00
|
|
|
# danger-allow-state-serialisation is needed to save the state in the db
|
|
|
|
|
# danger-credential-internals is needed to support U2F to Webauthn migration
|
2026-04-30 21:45:45 +02:00
|
|
|
webauthn-rs = { version = "0.5.5", features = ["danger-allow-state-serialisation", "danger-credential-internals"] }
|
|
|
|
|
webauthn-rs-proto = "0.5.5"
|
|
|
|
|
webauthn-rs-core = "0.5.5"
|
2018-02-10 01:00:55 +01:00
|
|
|
|
2023-02-08 17:13:14 +01:00
|
|
|
# Handling of URL's for WebAuthn and favicons
|
2026-01-22 23:40:39 +01:00
|
|
|
url = "2.5.8"
|
2018-07-12 21:46:50 +02:00
|
|
|
|
2023-02-08 17:13:14 +01:00
|
|
|
# Email libraries
|
Misc fixes and updates (#7558)
* Update GHA and pre-commit
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update admin diagnostics
Added a check if the templates are overridden and return which specific folder, `admin`, `email` or `scss`.
This way we could more quickly point users to possible outdated templates which they are using.
Also updated the Support String to use some emojis so we should be able to quicker see if there is something wrong.
Just checking `true` or `false` could be difficult sometimes, and sometimes what we had as `false` wasn't bad either.
Also adjusted the eslint comments so it will work with the latest version of eslint.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix updating collections for a cipher
The newer clients expect a `cipherDetails` response on the `collections-admin` endpoints.
Without it, the client will cause an error and stops handling the update correctly.
This will fix this by returning the cipher json.
Fixes #7545
Fixes #7546
Signed-off-by: BlackDex <black.dex@gmail.com>
* Cache CSS file in a different way
Currently we set a cache ttl of 24 hours, and users need to do a force refresh if there is anything changed to the CSS file.
In the past we have had several issue reported which were related to a still cached CSS file.
This commit will change the caching and also cache the generated CSS file in memory.
Instead of letting the browser cache it for 24 hours we generate an ETag, this is just a hash of the contents.
This ETag is returned by the browser during a request, and we can match this, and if so, just return a `304` `Not Modified`.
If the ETag is not known, we return the new content.
This should make simple refreshes by clients get updated settings or a new version of Vaultwarden which has other CSS entries get updated instantly.
If a user does a hard refresh, we will not receive the ETag and the content will be served.
The same goes if someone has the `reload_templates` feature enabled, since then we should not cache anyway.
If someone adjust settings via the `/admin` interface, the cache will be invalidated and a new CSS will be generated.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix showing events for a specific user
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update crates and adjust code.
- Updated opendal and adjusted code where needed.
- Updated yubico_ng and adjusted code where needed.
This version now supports using an own HttpClient and it pulls in no reqwest dependency anymore.
Now it will use our own client which uses custom hickory DNS and other features.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update web-vault to v2026.7.0
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix hadolint warnings
Signed-off-by: BlackDex <black.dex@gmail.com>
---------
Signed-off-by: BlackDex <black.dex@gmail.com>
2026-08-06 20:22:12 +02:00
|
|
|
lettre = { version = "0.11.23", default-features = false, features = [
|
2026-05-17 19:38:49 +02:00
|
|
|
# Misc
|
|
|
|
|
"tracing",
|
|
|
|
|
"serde",
|
|
|
|
|
"builder",
|
|
|
|
|
"hostname",
|
|
|
|
|
# TLS/Security
|
|
|
|
|
"ring",
|
|
|
|
|
"rustls-native-certs",
|
|
|
|
|
"tokio1-rustls",
|
|
|
|
|
# Transport
|
|
|
|
|
"smtp-transport",
|
|
|
|
|
"sendmail-transport",
|
|
|
|
|
] }
|
2025-08-26 21:16:50 +02:00
|
|
|
percent-encoding = "2.3.2" # URL encoding library used for URL's in the emails
|
2024-08-07 22:46:03 +02:00
|
|
|
email_address = "0.2.9"
|
2018-08-15 08:32:19 +02:00
|
|
|
|
2023-02-08 17:13:14 +01:00
|
|
|
# HTML Template library
|
2026-07-24 17:33:10 +02:00
|
|
|
handlebars = { version = "6.4.3", features = ["dir_source"] }
|
2019-01-13 01:39:29 +01:00
|
|
|
|
2023-02-08 17:13:14 +01:00
|
|
|
# HTTP client (Used for favicons, version check, DUO and HIBP API)
|
2026-06-05 21:52:52 +02:00
|
|
|
reqwest = { version = "0.13.4", default-features = false, features = [
|
2026-05-17 19:38:49 +02:00
|
|
|
# Misc
|
|
|
|
|
"charset",
|
|
|
|
|
"cookies",
|
|
|
|
|
"http2",
|
|
|
|
|
"json",
|
|
|
|
|
"form",
|
|
|
|
|
"rustls-no-provider",
|
|
|
|
|
"stream",
|
|
|
|
|
# Compression
|
|
|
|
|
"brotli",
|
|
|
|
|
"deflate",
|
|
|
|
|
"gzip",
|
|
|
|
|
"zstd",
|
|
|
|
|
# Proxy
|
|
|
|
|
"socks",
|
|
|
|
|
"system-proxy",
|
|
|
|
|
] }
|
2026-05-02 18:56:15 +02:00
|
|
|
hickory-resolver = "0.26.1"
|
2022-02-07 22:26:22 +01:00
|
|
|
|
2023-02-08 17:13:14 +01:00
|
|
|
# Favicon extraction libraries
|
2026-07-08 22:10:29 +02:00
|
|
|
html5gum = "0.8.4"
|
2026-07-24 17:33:10 +02:00
|
|
|
regex = { version = "1.13.1", default-features = false, features = [
|
2026-05-17 19:38:49 +02:00
|
|
|
"perf",
|
|
|
|
|
"std",
|
|
|
|
|
"unicode-perl",
|
|
|
|
|
] }
|
2025-08-26 21:16:50 +02:00
|
|
|
data-url = "0.3.2"
|
2026-07-08 22:10:29 +02:00
|
|
|
bytes = "1.12.1"
|
2026-02-18 00:17:20 +01:00
|
|
|
svg-hush = "0.9.6"
|
2023-02-08 17:13:14 +01:00
|
|
|
|
|
|
|
|
# Cache function results (Used for version check and favicon fetching)
|
2026-07-08 22:10:29 +02:00
|
|
|
cached = { version = "2.0.2", features = ["async"] }
|
2022-02-07 22:26:22 +01:00
|
|
|
|
|
|
|
|
# Used for custom short lived cookie jar during favicon extraction
|
2024-04-06 13:55:10 +02:00
|
|
|
cookie = "0.18.1"
|
2026-02-18 00:17:20 +01:00
|
|
|
cookie_store = "0.22.1"
|
2019-01-27 15:39:19 +01:00
|
|
|
|
2023-02-08 17:13:14 +01:00
|
|
|
# Used by U2F, JWT and PostgreSQL
|
2026-07-08 22:10:29 +02:00
|
|
|
openssl = "0.10.81"
|
2019-09-12 16:12:22 -04:00
|
|
|
|
2020-03-02 14:57:06 -05:00
|
|
|
# CLI argument parsing
|
2022-06-04 19:16:36 +02:00
|
|
|
pico-args = "0.5.0"
|
2020-03-02 14:57:06 -05:00
|
|
|
|
2020-08-18 17:15:44 +02:00
|
|
|
# Macro ident concatenation
|
2026-06-05 21:52:52 +02:00
|
|
|
pastey = "0.2.3"
|
2025-12-19 17:38:13 +01:00
|
|
|
governor = "0.10.4"
|
2020-08-18 17:15:44 +02:00
|
|
|
|
2026-07-24 18:27:32 +02:00
|
|
|
# CIDR parsing for the trusted proxies of the client IP header
|
Misc fixes and updates (#7558)
* Update GHA and pre-commit
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update admin diagnostics
Added a check if the templates are overridden and return which specific folder, `admin`, `email` or `scss`.
This way we could more quickly point users to possible outdated templates which they are using.
Also updated the Support String to use some emojis so we should be able to quicker see if there is something wrong.
Just checking `true` or `false` could be difficult sometimes, and sometimes what we had as `false` wasn't bad either.
Also adjusted the eslint comments so it will work with the latest version of eslint.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix updating collections for a cipher
The newer clients expect a `cipherDetails` response on the `collections-admin` endpoints.
Without it, the client will cause an error and stops handling the update correctly.
This will fix this by returning the cipher json.
Fixes #7545
Fixes #7546
Signed-off-by: BlackDex <black.dex@gmail.com>
* Cache CSS file in a different way
Currently we set a cache ttl of 24 hours, and users need to do a force refresh if there is anything changed to the CSS file.
In the past we have had several issue reported which were related to a still cached CSS file.
This commit will change the caching and also cache the generated CSS file in memory.
Instead of letting the browser cache it for 24 hours we generate an ETag, this is just a hash of the contents.
This ETag is returned by the browser during a request, and we can match this, and if so, just return a `304` `Not Modified`.
If the ETag is not known, we return the new content.
This should make simple refreshes by clients get updated settings or a new version of Vaultwarden which has other CSS entries get updated instantly.
If a user does a hard refresh, we will not receive the ETag and the content will be served.
The same goes if someone has the `reload_templates` feature enabled, since then we should not cache anyway.
If someone adjust settings via the `/admin` interface, the cache will be invalidated and a new CSS will be generated.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix showing events for a specific user
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update crates and adjust code.
- Updated opendal and adjusted code where needed.
- Updated yubico_ng and adjusted code where needed.
This version now supports using an own HttpClient and it pulls in no reqwest dependency anymore.
Now it will use our own client which uses custom hickory DNS and other features.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update web-vault to v2026.7.0
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix hadolint warnings
Signed-off-by: BlackDex <black.dex@gmail.com>
---------
Signed-off-by: BlackDex <black.dex@gmail.com>
2026-08-06 20:22:12 +02:00
|
|
|
ipnet = "2.12.1"
|
2026-07-24 18:27:32 +02:00
|
|
|
|
2025-08-08 23:22:22 +02:00
|
|
|
# OIDC for SSO
|
OpenDAL S3 parameter support (#6127)
* deps: upgrade the reqwest stack to 0.13
The reqwest 0.13 rustls feature selects the aws-lc provider. Use
rustls-no-provider instead, add rustls 0.23 with the ring provider, and
install that provider at process startup. This keeps Vaultwarden on the
existing ring crypto provider while giving reqwest, OpenDAL and lettre a
process-wide rustls provider.
Disable openidconnect default features and provide a small
AsyncHttpClient wrapper around Vaultwarden's shared reqwest client
builder. This preserves custom DNS, request blocking, timeouts and the
no-redirect OIDC behavior without openidconnect enabling its own reqwest
stack.
Upgrade yubico_ng to 0.15.0 and OpenDAL to 0.56.0. OpenDAL 0.56 also
moves S3 signing to reqsign 3, so switch the optional S3 dependencies
from reqsign/anyhow to reqsign-core and reqsign-aws-v4 and adapt the AWS
SDK credential bridge to the new ProvideCredential API.
Adjust the local OpenDAL call sites for the 0.56 API: use the FS_SCHEME
constant for filesystem checks and replace deprecated remove_all() with
delete_with(...).recursive(true) for Send file cleanup.
* storage: add OpenDAL S3 URI options
OpenDAL S3 storage accepts bucket and root path data today, but
serverless deployments also need URI query parameters to describe provider
behavior in one DATA_FOLDER value.
Update OpenDAL to 0.56.0 and build S3 operators with
S3Config::from_uri(). Keep Vaultwarden's AWS SDK credential chain by
installing a reqsign provider when the URI does not explicitly request
OpenDAL-native credential handling.
Move path handling and operator construction into storage.rs so S3-specific
parsing, credential setup, and URI path manipulation stay out of
configuration handling. Local filesystem behavior is unchanged, and S3
child paths are derived before query strings.
2026-05-15 11:30:31 -07:00
|
|
|
openidconnect = { version = "4.0.1", default-features = false }
|
2026-03-23 21:26:11 +01:00
|
|
|
moka = { version = "0.12.15", features = ["future"] }
|
2025-08-08 23:22:22 +02:00
|
|
|
|
2022-11-07 17:13:34 +01:00
|
|
|
# Check client versions for specific features.
|
2026-04-11 20:27:07 +02:00
|
|
|
semver = "1.0.28"
|
2022-11-07 17:13:34 +01:00
|
|
|
|
2022-03-20 18:51:24 +01:00
|
|
|
# Allow overriding the default memory allocator
|
|
|
|
|
# Mainly used for the musl builds, since the default musl malloc is very slow
|
2026-06-05 21:52:52 +02:00
|
|
|
mimalloc = { version = "0.1.52", optional = true, default-features = false, features = ["secure"] }
|
2025-04-04 12:18:09 +02:00
|
|
|
|
2026-07-24 17:33:10 +02:00
|
|
|
which = "8.0.5"
|
2022-03-20 18:51:24 +01:00
|
|
|
|
2023-02-28 23:09:51 +01:00
|
|
|
# Argon2 library with support for the PHC format
|
2024-01-26 20:19:53 +01:00
|
|
|
argon2 = "0.5.3"
|
2023-02-28 23:09:51 +01:00
|
|
|
|
|
|
|
|
# Reading a password from the cli for generating the Argon2id ADMIN_TOKEN
|
2026-06-05 21:52:52 +02:00
|
|
|
rpassword = "7.5.4"
|
2023-03-30 17:18:59 +02:00
|
|
|
|
2024-11-11 20:14:04 +01:00
|
|
|
# Loading a dynamic CSS Stylesheet
|
|
|
|
|
grass_compiler = { version = "0.13.4", default-features = false }
|
|
|
|
|
|
2025-05-29 12:40:58 -07:00
|
|
|
# File are accessed through Apache OpenDAL
|
Misc fixes and updates (#7558)
* Update GHA and pre-commit
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update admin diagnostics
Added a check if the templates are overridden and return which specific folder, `admin`, `email` or `scss`.
This way we could more quickly point users to possible outdated templates which they are using.
Also updated the Support String to use some emojis so we should be able to quicker see if there is something wrong.
Just checking `true` or `false` could be difficult sometimes, and sometimes what we had as `false` wasn't bad either.
Also adjusted the eslint comments so it will work with the latest version of eslint.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix updating collections for a cipher
The newer clients expect a `cipherDetails` response on the `collections-admin` endpoints.
Without it, the client will cause an error and stops handling the update correctly.
This will fix this by returning the cipher json.
Fixes #7545
Fixes #7546
Signed-off-by: BlackDex <black.dex@gmail.com>
* Cache CSS file in a different way
Currently we set a cache ttl of 24 hours, and users need to do a force refresh if there is anything changed to the CSS file.
In the past we have had several issue reported which were related to a still cached CSS file.
This commit will change the caching and also cache the generated CSS file in memory.
Instead of letting the browser cache it for 24 hours we generate an ETag, this is just a hash of the contents.
This ETag is returned by the browser during a request, and we can match this, and if so, just return a `304` `Not Modified`.
If the ETag is not known, we return the new content.
This should make simple refreshes by clients get updated settings or a new version of Vaultwarden which has other CSS entries get updated instantly.
If a user does a hard refresh, we will not receive the ETag and the content will be served.
The same goes if someone has the `reload_templates` feature enabled, since then we should not cache anyway.
If someone adjust settings via the `/admin` interface, the cache will be invalidated and a new CSS will be generated.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix showing events for a specific user
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update crates and adjust code.
- Updated opendal and adjusted code where needed.
- Updated yubico_ng and adjusted code where needed.
This version now supports using an own HttpClient and it pulls in no reqwest dependency anymore.
Now it will use our own client which uses custom hickory DNS and other features.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update web-vault to v2026.7.0
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix hadolint warnings
Signed-off-by: BlackDex <black.dex@gmail.com>
---------
Signed-off-by: BlackDex <black.dex@gmail.com>
2026-08-06 20:22:12 +02:00
|
|
|
opendal = { version = "0.58.1", default-features = false, features = ["services-fs"] }
|
2025-05-29 12:40:58 -07:00
|
|
|
|
|
|
|
|
# For retrieving AWS credentials, including temporary SSO credentials
|
Misc fixes and updates (#7558)
* Update GHA and pre-commit
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update admin diagnostics
Added a check if the templates are overridden and return which specific folder, `admin`, `email` or `scss`.
This way we could more quickly point users to possible outdated templates which they are using.
Also updated the Support String to use some emojis so we should be able to quicker see if there is something wrong.
Just checking `true` or `false` could be difficult sometimes, and sometimes what we had as `false` wasn't bad either.
Also adjusted the eslint comments so it will work with the latest version of eslint.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix updating collections for a cipher
The newer clients expect a `cipherDetails` response on the `collections-admin` endpoints.
Without it, the client will cause an error and stops handling the update correctly.
This will fix this by returning the cipher json.
Fixes #7545
Fixes #7546
Signed-off-by: BlackDex <black.dex@gmail.com>
* Cache CSS file in a different way
Currently we set a cache ttl of 24 hours, and users need to do a force refresh if there is anything changed to the CSS file.
In the past we have had several issue reported which were related to a still cached CSS file.
This commit will change the caching and also cache the generated CSS file in memory.
Instead of letting the browser cache it for 24 hours we generate an ETag, this is just a hash of the contents.
This ETag is returned by the browser during a request, and we can match this, and if so, just return a `304` `Not Modified`.
If the ETag is not known, we return the new content.
This should make simple refreshes by clients get updated settings or a new version of Vaultwarden which has other CSS entries get updated instantly.
If a user does a hard refresh, we will not receive the ETag and the content will be served.
The same goes if someone has the `reload_templates` feature enabled, since then we should not cache anyway.
If someone adjust settings via the `/admin` interface, the cache will be invalidated and a new CSS will be generated.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix showing events for a specific user
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update crates and adjust code.
- Updated opendal and adjusted code where needed.
- Updated yubico_ng and adjusted code where needed.
This version now supports using an own HttpClient and it pulls in no reqwest dependency anymore.
Now it will use our own client which uses custom hickory DNS and other features.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update web-vault to v2026.7.0
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix hadolint warnings
Signed-off-by: BlackDex <black.dex@gmail.com>
---------
Signed-off-by: BlackDex <black.dex@gmail.com>
2026-08-06 20:22:12 +02:00
|
|
|
aws-config = { version = "1.10.1", optional = true, default-features = false, features = [
|
2026-05-17 19:38:49 +02:00
|
|
|
"behavior-version-latest",
|
|
|
|
|
"credentials-process",
|
|
|
|
|
"rt-tokio",
|
|
|
|
|
"sso",
|
|
|
|
|
] }
|
2026-07-24 17:33:10 +02:00
|
|
|
aws-credential-types = { version = "1.3.0", optional = true }
|
|
|
|
|
aws-smithy-runtime-api = { version = "1.14.0", optional = true }
|
Misc fixes and updates (#7558)
* Update GHA and pre-commit
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update admin diagnostics
Added a check if the templates are overridden and return which specific folder, `admin`, `email` or `scss`.
This way we could more quickly point users to possible outdated templates which they are using.
Also updated the Support String to use some emojis so we should be able to quicker see if there is something wrong.
Just checking `true` or `false` could be difficult sometimes, and sometimes what we had as `false` wasn't bad either.
Also adjusted the eslint comments so it will work with the latest version of eslint.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix updating collections for a cipher
The newer clients expect a `cipherDetails` response on the `collections-admin` endpoints.
Without it, the client will cause an error and stops handling the update correctly.
This will fix this by returning the cipher json.
Fixes #7545
Fixes #7546
Signed-off-by: BlackDex <black.dex@gmail.com>
* Cache CSS file in a different way
Currently we set a cache ttl of 24 hours, and users need to do a force refresh if there is anything changed to the CSS file.
In the past we have had several issue reported which were related to a still cached CSS file.
This commit will change the caching and also cache the generated CSS file in memory.
Instead of letting the browser cache it for 24 hours we generate an ETag, this is just a hash of the contents.
This ETag is returned by the browser during a request, and we can match this, and if so, just return a `304` `Not Modified`.
If the ETag is not known, we return the new content.
This should make simple refreshes by clients get updated settings or a new version of Vaultwarden which has other CSS entries get updated instantly.
If a user does a hard refresh, we will not receive the ETag and the content will be served.
The same goes if someone has the `reload_templates` feature enabled, since then we should not cache anyway.
If someone adjust settings via the `/admin` interface, the cache will be invalidated and a new CSS will be generated.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix showing events for a specific user
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update crates and adjust code.
- Updated opendal and adjusted code where needed.
- Updated yubico_ng and adjusted code where needed.
This version now supports using an own HttpClient and it pulls in no reqwest dependency anymore.
Now it will use our own client which uses custom hickory DNS and other features.
Signed-off-by: BlackDex <black.dex@gmail.com>
* Update web-vault to v2026.7.0
Signed-off-by: BlackDex <black.dex@gmail.com>
* Fix hadolint warnings
Signed-off-by: BlackDex <black.dex@gmail.com>
---------
Signed-off-by: BlackDex <black.dex@gmail.com>
2026-08-06 20:22:12 +02:00
|
|
|
http = { version = "1.5.0", optional = true }
|
|
|
|
|
reqsign-aws-v4 = { version = "3.1.0", optional = true }
|
|
|
|
|
reqsign-core = { version = "3.2.1", optional = true }
|
2025-05-29 12:40:58 -07:00
|
|
|
|
2022-02-22 20:48:00 +01:00
|
|
|
# Strip debuginfo from the release builds
|
2025-05-16 18:49:43 +02:00
|
|
|
# The debug symbols are to provide better panic traces
|
2023-12-04 20:26:11 +01:00
|
|
|
# Also enable fat LTO and use 1 codegen unit for optimizations
|
2022-02-22 20:48:00 +01:00
|
|
|
[profile.release]
|
|
|
|
|
strip = "debuginfo"
|
2023-12-04 20:26:11 +01:00
|
|
|
lto = "fat"
|
|
|
|
|
codegen-units = 1
|
2025-11-01 22:21:04 +01:00
|
|
|
debug = false
|
2023-12-18 21:46:53 +01:00
|
|
|
|
|
|
|
|
# Optimize for size
|
|
|
|
|
[profile.release-micro]
|
|
|
|
|
inherits = "release"
|
|
|
|
|
strip = "symbols"
|
2025-11-01 22:21:04 +01:00
|
|
|
opt-level = "z"
|
2023-12-18 21:46:53 +01:00
|
|
|
panic = "abort"
|
2024-02-08 22:16:29 +01:00
|
|
|
|
|
|
|
|
# Profile for systems with low resources
|
|
|
|
|
# It will use less resources during build
|
|
|
|
|
[profile.release-low]
|
|
|
|
|
inherits = "release"
|
|
|
|
|
strip = "symbols"
|
|
|
|
|
lto = "thin"
|
2024-02-10 13:04:08 +01:00
|
|
|
codegen-units = 16
|
2024-02-08 22:16:29 +01:00
|
|
|
|
2025-11-01 22:21:04 +01:00
|
|
|
# Used for profiling and debugging like valgrind or heaptrack
|
|
|
|
|
# Inherits release to be sure all optimizations have been done
|
|
|
|
|
[profile.dbg]
|
|
|
|
|
inherits = "release"
|
|
|
|
|
strip = "none"
|
|
|
|
|
split-debuginfo = "off"
|
|
|
|
|
debug = "full"
|
|
|
|
|
|
|
|
|
|
# A little bit of a speedup for generic building
|
|
|
|
|
[profile.dev]
|
|
|
|
|
split-debuginfo = "unpacked"
|
|
|
|
|
debug = "line-tables-only"
|
|
|
|
|
|
|
|
|
|
# Used for CI builds to improve compile time
|
|
|
|
|
[profile.ci]
|
|
|
|
|
inherits = "dev"
|
|
|
|
|
debug = false
|
|
|
|
|
debug-assertions = false
|
|
|
|
|
strip = "symbols"
|
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
|
|
# Always build argon2 using opt-level 3
|
|
|
|
|
# This is a huge speed improvement during testing
|
|
|
|
|
[profile.dev.package.argon2]
|
|
|
|
|
opt-level = 3
|
|
|
|
|
|
2024-02-08 22:16:29 +01:00
|
|
|
# Linting config
|
2024-09-23 20:25:32 +02:00
|
|
|
# https://doc.rust-lang.org/rustc/lints/groups.html
|
2025-04-09 21:21:10 +02:00
|
|
|
[workspace.lints.rust]
|
2024-02-08 22:16:29 +01:00
|
|
|
# Forbid
|
|
|
|
|
unsafe_code = "forbid"
|
|
|
|
|
non_ascii_idents = "forbid"
|
|
|
|
|
|
|
|
|
|
# Deny
|
2026-05-17 19:38:49 +02:00
|
|
|
warnings = "deny" # Explicitly deny all warnings since we deny all warnings in the end
|
|
|
|
|
|
|
|
|
|
# Deny lint groups
|
2025-11-01 22:21:04 +01:00
|
|
|
deprecated_safe = { level = "deny", priority = -1 }
|
2024-04-06 13:55:10 +02:00
|
|
|
future_incompatible = { level = "deny", priority = -1 }
|
2024-09-23 20:25:32 +02:00
|
|
|
keyword_idents = { level = "deny", priority = -1 }
|
|
|
|
|
let_underscore = { level = "deny", priority = -1 }
|
2025-11-01 22:21:04 +01:00
|
|
|
nonstandard_style = { level = "deny", priority = -1 }
|
2024-09-23 20:25:32 +02:00
|
|
|
refining_impl_trait = { level = "deny", priority = -1 }
|
2024-04-06 13:55:10 +02:00
|
|
|
rust_2018_idioms = { level = "deny", priority = -1 }
|
|
|
|
|
rust_2021_compatibility = { level = "deny", priority = -1 }
|
2024-12-05 22:10:59 +01:00
|
|
|
rust_2024_compatibility = { level = "deny", priority = -1 }
|
2026-05-17 19:38:49 +02:00
|
|
|
unused = { level = "deny", priority = -1 }
|
|
|
|
|
|
|
|
|
|
# Deny individual lints
|
|
|
|
|
closure_returning_async_block = "deny"
|
|
|
|
|
deprecated_in_future = "deny"
|
2024-09-23 20:25:32 +02:00
|
|
|
single_use_lifetimes = "deny"
|
2024-02-08 22:16:29 +01:00
|
|
|
trivial_casts = "deny"
|
|
|
|
|
trivial_numeric_casts = "deny"
|
|
|
|
|
unused_import_braces = "deny"
|
|
|
|
|
unused_lifetimes = "deny"
|
2024-09-23 20:25:32 +02:00
|
|
|
unused_qualifications = "deny"
|
|
|
|
|
variant_size_differences = "deny"
|
2024-02-08 22:16:29 +01:00
|
|
|
|
2024-09-23 20:25:32 +02:00
|
|
|
# https://rust-lang.github.io/rust-clippy/stable/index.html
|
2025-04-09 21:21:10 +02:00
|
|
|
[workspace.lints.clippy]
|
2026-05-17 19:38:49 +02:00
|
|
|
# Warn only so you can still use these during development, but not in the final code
|
2024-09-23 20:25:32 +02:00
|
|
|
dbg_macro = "warn"
|
|
|
|
|
todo = "warn"
|
2024-02-08 22:16:29 +01:00
|
|
|
|
2025-03-17 23:02:02 +01:00
|
|
|
# Ignore/Allow
|
|
|
|
|
result_large_err = "allow"
|
|
|
|
|
|
2026-05-17 19:38:49 +02:00
|
|
|
# Warn on these lint group (Some might be warn by default already though)
|
|
|
|
|
# Will be denied during CI!
|
|
|
|
|
complexity = { level = "warn", priority = -1 }
|
|
|
|
|
pedantic = { level = "warn", priority = -1 }
|
|
|
|
|
perf = { level = "warn", priority = -1 }
|
|
|
|
|
style = { level = "warn", priority = -1 }
|
|
|
|
|
suspicious = { level = "warn", priority = -1 }
|
|
|
|
|
|
|
|
|
|
# Deny individual lints
|
2025-11-01 22:21:04 +01:00
|
|
|
branches_sharing_code = "deny"
|
2024-02-08 22:16:29 +01:00
|
|
|
clone_on_ref_ptr = "deny"
|
|
|
|
|
equatable_if_let = "deny"
|
|
|
|
|
float_cmp_const = "deny"
|
|
|
|
|
iter_on_empty_collections = "deny"
|
|
|
|
|
iter_on_single_items = "deny"
|
|
|
|
|
mem_forget = "deny"
|
2025-11-01 22:21:04 +01:00
|
|
|
needless_collect = "deny"
|
|
|
|
|
redundant_clone = "deny"
|
2024-02-08 22:16:29 +01:00
|
|
|
unnecessary_self_imports = "deny"
|
2025-11-01 22:21:04 +01:00
|
|
|
useless_let_if_seq = "deny"
|
2024-02-08 22:16:29 +01:00
|
|
|
verbose_file_reads = "deny"
|
2026-05-17 19:38:49 +02:00
|
|
|
str_to_string = "deny"
|
|
|
|
|
|
|
|
|
|
# Pedantic Opt-Outs
|
|
|
|
|
inline_always = "allow" # We use this sparsely
|
|
|
|
|
struct_field_names = "allow" # Noisy and some items are Bitwarden controlled
|
|
|
|
|
large_futures = "allow" # Causes a fail in some Rocket macro's, since we experience no issues, allow it
|
|
|
|
|
too_many_lines = "allow" # For now, allow this, good to enable in the future and see if we can refactor
|
|
|
|
|
unnecessary_wraps = "allow" # Too much false positives because of Rocket integrations
|
|
|
|
|
# We do not use these doc items
|
|
|
|
|
doc_link_with_quotes = "allow"
|
|
|
|
|
doc_markdown = "allow"
|
|
|
|
|
missing_errors_doc = "allow"
|
|
|
|
|
missing_panics_doc = "allow"
|
2025-04-09 21:21:10 +02:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|