mirror of
https://github.com/OMGeeky/downloader.git
synced 2025-12-26 16:07:43 +01:00
builds on gnu stable
This commit is contained in:
2
.config/config.toml
Normal file
2
.config/config.toml
Normal file
@@ -0,0 +1,2 @@
|
||||
[target.x86_64-unknown-linux-musl]
|
||||
linker = "rust-lld"
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
||||
/target
|
||||
/auth/
|
||||
/temp/
|
||||
/Cargo.lock
|
||||
|
||||
8
.idea/.gitignore
generated
vendored
Normal file
8
.idea/.gitignore
generated
vendored
Normal 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
|
||||
10
copy_src_files_to_vm_shared_in.cmd
Normal file
10
copy_src_files_to_vm_shared_in.cmd
Normal 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
|
||||
@@ -1,5 +1,3 @@
|
||||
#![feature(async_fn_in_trait)]
|
||||
#![feature(impl_trait_projections)]
|
||||
#![allow(unused, incomplete_features)]
|
||||
|
||||
use std::error::Error;
|
||||
|
||||
Reference in New Issue
Block a user