mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-09-16 07:42:07 -04:00
- Update Rust to v1.98.1 which resolves a build issues with strange outcomes - Adjusted the DockerSettings and render_template to extract the `rust_version` from the `rust-toolchain.toml` file. This should prevent mismatches and forgetting to update DockerSettings. - Updated typos in GHA and Pre-Commit - Updated all possible crates including hickory which has several CVE's fixed. Signed-off-by: BlackDex <black.dex@gmail.com>
20 lines
311 B
TOML
20 lines
311 B
TOML
[package]
|
|
name = "macros"
|
|
version = "0.1.0"
|
|
repository.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
[lib]
|
|
name = "macros"
|
|
path = "src/lib.rs"
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
quote = "1.0.47"
|
|
syn = "3.0.5"
|
|
|
|
[lints]
|
|
workspace = true
|