http loader for bevy

adds the ability to load assets from http and https urls

working on merging into bevy

usage

fn setup(mut state: ResMut<State>, asset_server: Res<AssetServer>) {
    state.handle = asset_server.load("remote://icon.png");
}