diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2024-04-02 10:55:50 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2024-04-02 10:55:50 +0200 |
| commit | 03be1ea82c036ac5fec780dcd6d55d19fcf6df0c (patch) | |
| tree | 98484c2762b4b585e1c19e3f09be8b3cb898ecb6 /Cargo.toml | |
| parent | ba779e988e7d48c5d7051e1eb59b77da195da1a6 (diff) | |
| parent | cca4bc321bea5bcd278f8c5f47a6edf385461854 (diff) | |
| download | mullvadvpn-03be1ea82c036ac5fec780dcd6d55d19fcf6df0c.tar.xz mullvadvpn-03be1ea82c036ac5fec780dcd6d55d19fcf6df0c.zip | |
Merge branch 'forbid-unicode-idents-in-rust'
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml index 6cc9f3c797..c79b3969ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,12 @@ members = [ "tunnel-obfuscation", ] +# Keep all lints in sync with `test/Cargo.toml` [workspace.lints.rust] +# Security +non_ascii_idents = "forbid" + +# Modern, easy to read style and opinionated best practices rust_2018_idioms = "deny" [workspace.lints.clippy] |
