Skip to content

Commit

Permalink
fix: remove currently unused platforms from targets and description
Browse files Browse the repository at this point in the history
  • Loading branch information
Frederik Terstappen committed Apr 25, 2024
1 parent 770e914 commit 278ffd1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 18 deletions.
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
12 changes: 0 additions & 12 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 278ffd1

Please sign in to comment.