Is it obvious to you all which one of the features here might be adding the BlitPlugin?
bevy = { git = "https://github.com/bevyengine/bevy", default-features = false, features = [ "animation",
"bevy_asset",
"bevy_audio",
"bevy_gilrs",
"bevy_scene",
"bevy_winit",
"bevy_gltf",
"bevy_render",
"png",
"hdr",
"ktx2",
"zstd",
"vorbis",
"x11",
"filesystem_watcher",
"android_shared_stdcxx",
"default_font",
"webgl2",] }
Note that the only plugin which adds BlitPlugin is the CorePipelinePlugin:
https://github.com/search?q=repo%3Abevyengine%2Fbevy BlitPlugin&type=code
And the CorePipelinePlugin is only added by DefaultPlugins if the "bevy_core_pipeline" feature is enabled: https://github.com/search?q=repo%3Abevyengine%2Fbevy CorePipelinePlugin&type=code
and that feature is certainly not on the list above, yes?