1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00

Forbid unsafe

This commit is contained in:
NGnius (Graham)
2025-04-06 09:55:29 -04:00
parent 51f7ba4431
commit b99bbe67e4
13 changed files with 13 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
mod common; mod common;
#[cfg(feature = "cardlife")] #[cfg(feature = "cardlife")]

View File

@@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
mod encryption; mod encryption;
pub use encryption::CryptoImpl; pub use encryption::CryptoImpl;

View File

@@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
mod cli; mod cli;
use polariton_auth::Handshake; use polariton_auth::Handshake;

View File

@@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
mod cli; mod cli;
mod data; mod data;

View File

@@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
pub mod data; pub mod data;
mod state; mod state;

View File

@@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
mod robocraft; mod robocraft;
#[rocket::get("/")] #[rocket::get("/")]

View File

@@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
mod cli; mod cli;
use polariton_auth::Handshake; use polariton_auth::Handshake;

View File

@@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
mod cli; mod cli;
mod data; mod data;

View File

@@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
mod cli; mod cli;
use polariton_auth::Handshake; use polariton_auth::Handshake;

View File

@@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
mod cli; mod cli;
mod data; mod data;

View File

@@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
mod cli; mod cli;
use polariton_auth::Handshake; use polariton_auth::Handshake;

View File

@@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
mod cli; mod cli;
mod data; mod data;

View File

@@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
mod robocraft; mod robocraft;
mod cli; mod cli;