builds on gnu stable

This commit is contained in:
OMGeeky
2023-04-01 14:43:54 +02:00
parent 6fc3b9e248
commit 7d15139a13
5 changed files with 21 additions and 2 deletions

2
.config/config.toml Normal file
View File

@@ -0,0 +1,2 @@
[target.x86_64-unknown-linux-musl]
linker = "rust-lld"

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
/target
/auth/
/temp/
/Cargo.lock

8
.idea/.gitignore generated vendored Normal file
View File

@@ -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

View File

@@ -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

View File

@@ -1,5 +1,3 @@
#![feature(async_fn_in_trait)]
#![feature(impl_trait_projections)]
#![allow(unused, incomplete_features)]
use std::error::Error;