Skip to content

Commit

Permalink
Disallow using unsafe code
Browse files Browse the repository at this point in the history
Using unsafe blocks makes the fuzzer use more resources.

See: wiktor-k/ssh-agent-lib#38
Signed-off-by: Wiktor Kwapisiewicz <[email protected]>
  • Loading branch information
wiktor-k committed Apr 5, 2024
1 parent 6b8c276 commit 04224cd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ssh-agent-lib/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#![doc = include_str!("../README.md")]
#![deny(missing_debug_implementations)]
#![deny(unsafe_code)]

pub mod proto;

Expand Down

0 comments on commit 04224cd

Please sign in to comment.