mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-17 07:41:23 +01:00
enable string_slice lint
Also swaps out vendored HTML-escaping code for a dependency that I imagine has decent testing considering all of its reverse depedencies.
This commit is contained in:
parent
9abe4799db
commit
844b32f097
7 changed files with 35 additions and 73 deletions
|
|
@ -52,6 +52,7 @@ semicolon_inside_block = "warn"
|
|||
str_to_string = "warn"
|
||||
string_add = "warn"
|
||||
string_lit_chars_any = "warn"
|
||||
string_slice = "warn"
|
||||
string_to_string = "warn"
|
||||
suspicious_xor_used_as_pow = "warn"
|
||||
tests_outside_test_module = "warn"
|
||||
|
|
@ -87,6 +88,7 @@ clap = { version = "4.3.0", default-features = false, features = ["std", "derive
|
|||
figment = { version = "0.10.8", features = ["env", "toml"] }
|
||||
futures-util = { version = "0.3.28", default-features = false }
|
||||
hmac = "0.12.1"
|
||||
html-escape = "0.2.13"
|
||||
http = "0.2.9"
|
||||
hyper = "0.14.26"
|
||||
image = { version = "0.24.6", default-features = false, features = ["jpeg", "png", "gif"] }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue