From 236b25e4c55840970e0761fc92fdfc5409d9ef54 Mon Sep 17 00:00:00 2001 From: alemi Date: Sat, 17 Aug 2024 17:13:24 +0200 Subject: [PATCH] chore: removed old rust stuff --- .cargo/config | 14 -------------- .editorconfig | 6 ------ .github/workflows/ci.yml | 31 ------------------------------- .rustfmt.toml | 1 - 4 files changed, 52 deletions(-) delete mode 100644 .cargo/config delete mode 100644 .github/workflows/ci.yml delete mode 100644 .rustfmt.toml diff --git a/.cargo/config b/.cargo/config deleted file mode 100644 index 31ffe83..0000000 --- a/.cargo/config +++ /dev/null @@ -1,14 +0,0 @@ -[target.x86_64-apple-darwin] -rustflags = [ - "-C", "link-arg=-undefined", - "-C", "link-arg=dynamic_lookup", -] - -[target.aarch64-apple-darwin] -rustflags = [ - "-C", "link-arg=-undefined", - "-C", "link-arg=dynamic_lookup", -] - -[net] -git-fetch-with-cli = true diff --git a/.editorconfig b/.editorconfig index 4935540..b9c5b81 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,9 +5,3 @@ insert_final_newline = true charset = utf-8 indent_style = tab indent_size = 4 - -[*.rs] -indent_size = 2 - -[*.js] -indent_size = 2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index c165435..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Cargo Build & Test - -on: - push: - branches: - - dev - - main - -env: - CARGO_TERM_COLOR: always - -jobs: - build_and_test: - name: Rust project - latest - runs-on: ubuntu-latest - strategy: - matrix: - toolchain: - - stable - # - beta - # - nightly - # disable other toolchains to save on github runners - steps: - - uses: arduino/setup-protoc@v2 - - uses: actions/checkout@v3 - - uses: webfactory/ssh-agent@v0.7.0 - with: - ssh-private-key: ${{ secrets.ACTIONS_SSH_DEPLOY_KEY }} - - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - - run: cargo build --verbose - - run: cargo test --verbose diff --git a/.rustfmt.toml b/.rustfmt.toml deleted file mode 100644 index 218e203..0000000 --- a/.rustfmt.toml +++ /dev/null @@ -1 +0,0 @@ -hard_tabs = true