update cargo features

This commit is contained in:
Peter Hayman 2025-06-30 13:01:38 +10:00
parent bb156cd4df
commit 7e4a750497
2 changed files with 3 additions and 3 deletions

View File

@ -516,10 +516,10 @@ file_watcher = ["bevy_internal/file_watcher"]
# Enables watching in memory asset providers for Bevy Asset hot-reloading # Enables watching in memory asset providers for Bevy Asset hot-reloading
embedded_watcher = ["bevy_internal/embedded_watcher"] embedded_watcher = ["bevy_internal/embedded_watcher"]
# Enables using assets from HTTP sources # Enables downloading assets from HTTP sources
http = ["bevy_internal/http"] http = ["bevy_internal/http"]
# Enables using assets from HTTPS sources # Enables downloading assets from HTTPS sources
https = ["bevy_internal/https"] https = ["bevy_internal/https"]
# Assets downloaded from HTTP sources are cached # Assets downloaded from HTTP sources are cached

View File

@ -93,8 +93,8 @@ The default feature set enables most of the expected features of a game engine,
|gltf_convert_coordinates_default|Enable converting glTF coordinates to Bevy's coordinate system by default. This will be Bevy's default behavior starting in 0.18.| |gltf_convert_coordinates_default|Enable converting glTF coordinates to Bevy's coordinate system by default. This will be Bevy's default behavior starting in 0.18.|
|hotpatching|Enable hotpatching of Bevy systems| |hotpatching|Enable hotpatching of Bevy systems|
|http|Enables downloading assets from HTTP sources| |http|Enables downloading assets from HTTP sources|
|https|Enables downloading assets from HTTPS sources|
|http_source_cache|Assets downloaded from HTTP sources are cached| |http_source_cache|Assets downloaded from HTTP sources are cached|
|https|Enables downloading assets from HTTPS sources|
|ico|ICO image format support| |ico|ICO image format support|
|jpeg|JPEG image format support| |jpeg|JPEG image format support|
|libm|Uses the `libm` maths library instead of the one provided in `std` and `core`.| |libm|Uses the `libm` maths library instead of the one provided in `std` and `core`.|