From bdb4beaf1861a3efb74231e9fc0619dd7ab3d5f6 Mon Sep 17 00:00:00 2001 From: Hennadii Chernyshchyk Date: Fri, 21 Jul 2023 21:42:32 +0300 Subject: [PATCH] Format Cargo.toml --- Cargo.toml | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 78fb4dd..3b0a1f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,24 +11,31 @@ repository = "https://github.com/JonahPlusPlus/bevy_atmosphere" exclude = ["/assets/", "/examples/", "/.github/"] [dependencies] -bevy = {version = "0.11", default-features = false, features = ["bevy_asset", "bevy_render", "bevy_pbr"]} +bevy = { version = "0.11", default-features = false, features = [ + "bevy_asset", + "bevy_render", + "bevy_pbr", +] } bevy_atmosphere_macros = { path = "macros", version = "0.2.1" } cfg-if = "1.0" [dev-dependencies] bevy_spectator = "0.3" -bevy = { version = "0.11.0", features = ["bevy_core_pipeline", "x11"] } # load all in case docs.rs complains +bevy = { version = "0.11.0", features = [ + "bevy_core_pipeline", + "x11", +] } [features] default = ["basic", "all_models"] basic = ["detection", "dithering", "procedural"] # enables basic features detection = [] # enables camera detection (disable to add skyboxes manually) dithering = [] # enables dithering (disable for banding) -procedural = [] # enables the automatic addition of `AtmospherePipelinePlugin` from `AtmospherePlugin` (disable to edit the sky texture manually) +procedural = [] # enables the automatic addition of `AtmospherePipelinePlugin` (disable to edit the sky texture manually) # models -all_models = [ "gradient", "nishita"] # enables all models -gradient = [] # enables the gradient model -nishita = [] # enables the nishita model +all_models = ["gradient", "nishita"] # enables all models +gradient = [] # enables the gradient model +nishita = [] # enables the nishita model [[example]] name = "basic"