Skip to content

Commit

Permalink
explaination for feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Deep-co-de committed Jun 30, 2024
1 parent 78ff16b commit 9f7ae43
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions documentation/docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ rinf = { version = "0.0.0", features = ["feature-name"] }

- `rt-multi-thread`: Starts a worker thread for each CPU core available on the system within the `tokio` runtime by enabling its `rt-multi-thread` feature. By default, the `tokio` runtime uses only one thread. Enabling this feature allows the `tokio` runtime to utilize all the cores on your computer. This feature does not affect applications on the web platform.
- `show-backtrace`: Prints the full backtrace in the CLI when a panic occurs in debug mode. In general, backtrace is not very helpful when debugging async apps, so consider using [`tracing`](https://crates.io/crates/tracing) for logging purposes. Note that this feature does not affect debugging on the web platform.
- `bevy`: Adds the trait `Event` of `bevy_ecs` through a derive macro for DartSignal. This allows bevy's Entity Component System to be used to listen for events from `Dart`.

0 comments on commit 9f7ae43

Please sign in to comment.