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;
#[cfg(feature = "cardlife")]

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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