mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-07-14 16:25:06 +00:00
- Updated crates - Switched to rustls instead of native-tls Some dependency were already using rustls by default or without option. By removing native-tls we also have just one way of working here. Updated favicon fetching which now is able to fetch more icons. - Use rustls instead of native-tls This seems to work better, probably because of tls sniffing - Use different user-agent and added several other headers - Added SVG support. SVG Images will be sanitized first before stored or presented. Also, a special CSP for images will be sent to prevent scripts etc.. from SVG images. Signed-off-by: BlackDex <black.dex@gmail.com>
16 lines
197 B
TOML
16 lines
197 B
TOML
[package]
|
|
name = "macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "macros"
|
|
path = "src/lib.rs"
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
quote = "1.0.40"
|
|
syn = "2.0.104"
|
|
|
|
[lints]
|
|
workspace = true
|