From 278ffd1c10f2079c09e13bf7e4f151a3ccd38c32 Mon Sep 17 00:00:00 2001 From: Frederik Terstappen Date: Thu, 25 Apr 2024 15:50:04 +0200 Subject: [PATCH] fix: remove currently unused platforms from targets and description --- README.md | 16 ++++++++++------ rust-toolchain.toml | 12 ------------ 2 files changed, 10 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index f69e88d..7449551 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,10 @@ bevy_mod_lockdown is a library to reduce the attack surface your application off ## Description +> [!NOTE] +> This repository is open for additional features and the expansion of existing features to other platforms. +> It is currently limited to the features I use in my personal project and the platforms I have available. + bevy_mod_lockdown offers ways to reduce the attack surface your application offers. It can for example disable network usage or limit file system access to specific directories. This is mainly intended for applications that load third-party code but can also help in other situations. @@ -57,12 +61,12 @@ Include other features to see something beside the warning. Feature support on different platform: -| | Android | iOS | Linux | MacOS | Wasm | Windows | -| :------------ | :-------------: | :-------------: | :----------------: | :-------------: | :-------------: | :----------------: | -| `filesystem` | :grey_question: | :grey_question: | :white_check_mark: | :grey_question: | :grey_question: | :grey_question: | -| `network` | :grey_question: | :grey_question: | :grey_question: | :grey_question: | :grey_question: | :grey_question: | -| `privilege` | :grey_question: | :grey_question: | :white_check_mark: | :grey_question: | :grey_question: | :white_check_mark: | -| `system_call` | :grey_question: | :grey_question: | :grey_question: | :grey_question: | :grey_question: | :grey_question: | +| | Linux | Windows | +| :------------ | :----------------: | :----------------: | +| `filesystem` | :white_check_mark: | :grey_question: | +| `network` | :grey_question: | :grey_question: | +| `privilege` | :white_check_mark: | :white_check_mark: | +| `system_call` | :grey_question: | :grey_question: | __Legend:__ :grey_question: = To be evaluated diff --git a/rust-toolchain.toml b/rust-toolchain.toml index ba227ca..faa1a8b 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -10,22 +10,10 @@ components = [ "rust-src", ] targets = [ - # WASM - "wasm32-unknown-unknown", - # Linux "x86_64-unknown-linux-gnu", - # Mac - "aarch64-apple-darwin", - - # iOS - "aarch64-apple-ios", - # Windows "x86_64-pc-windows-gnu", - - # Android - "aarch64-linux-android", ] profile = "default"