From 7d15139a1363393eabe5b5586f3e2322e7e9d176 Mon Sep 17 00:00:00 2001 From: OMGeeky Date: Sat, 1 Apr 2023 14:43:54 +0200 Subject: [PATCH] builds on gnu stable --- .config/config.toml | 2 ++ .gitignore | 1 + .idea/.gitignore | 8 ++++++++ copy_src_files_to_vm_shared_in.cmd | 10 ++++++++++ src/lib.rs | 2 -- 5 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 .config/config.toml create mode 100644 .idea/.gitignore create mode 100644 copy_src_files_to_vm_shared_in.cmd diff --git a/.config/config.toml b/.config/config.toml new file mode 100644 index 0000000..d07fa72 --- /dev/null +++ b/.config/config.toml @@ -0,0 +1,2 @@ +[target.x86_64-unknown-linux-musl] +linker = "rust-lld" \ No newline at end of file diff --git a/.gitignore b/.gitignore index 48e050e..9cd5446 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /target /auth/ /temp/ +/Cargo.lock diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/copy_src_files_to_vm_shared_in.cmd b/copy_src_files_to_vm_shared_in.cmd new file mode 100644 index 0000000..5d96b9e --- /dev/null +++ b/copy_src_files_to_vm_shared_in.cmd @@ -0,0 +1,10 @@ +SET target_folder=C:\Users\frede\Documents\VM\Shared\in\CLionProjects +SET temp_source_folder=C:\Users\frede\CLionProjects + +SET temp_source_to_copy=google_bigquery\ +xcopy %temp_source_folder%\%temp_source_to_copy% %target_folder%\%temp_source_to_copy% /exclude:%temp_source_folder%\exclude_in_copy.txt /e /y +SET temp_source_to_copy=tests\twitch_backup\ +xcopy %temp_source_folder%\%temp_source_to_copy% %target_folder%\%temp_source_to_copy% /exclude:%temp_source_folder%\exclude_in_copy.txt /e /y +SET temp_source_to_copy=exponential_backoff\ +xcopy %temp_source_folder%\%temp_source_to_copy% %target_folder%\%temp_source_to_copy% /exclude:%temp_source_folder%\exclude_in_copy.txt /e /y +echo DONE diff --git a/src/lib.rs b/src/lib.rs index fc015bc..77b1a79 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,3 @@ -#![feature(async_fn_in_trait)] -#![feature(impl_trait_projections)] #![allow(unused, incomplete_features)] use std::error::Error;