aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-08-29 08:55:19 -0700
committerFranck Cuny <franck@fcuny.net>2025-08-29 08:55:19 -0700
commit88a85cf64cd58927da2ff370f99862d5e2be3ccc (patch)
tree43cd165a6dfdcbda15bc0bb684884f7e7626e907
parentMerge remote-tracking branch 'import/main' into fcuny/rust (diff)
downloadx-88a85cf64cd58927da2ff370f99862d5e2be3ccc.tar.gz
delete unneeded files
Diffstat (limited to '')
-rw-r--r--.gitignore1
-rw-r--r--src/apple_silicon/.editorconfig23
-rw-r--r--src/apple_silicon/.github/dependabot.yml10
-rw-r--r--src/apple_silicon/.github/workflows/ci.yml35
-rw-r--r--src/apple_silicon/.gitignore1
5 files changed, 1 insertions, 69 deletions
diff --git a/.gitignore b/.gitignore
index 6d69087..2af821e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
.pre-commit-config.yaml
/result
+/target/
diff --git a/src/apple_silicon/.editorconfig b/src/apple_silicon/.editorconfig
deleted file mode 100644
index 9d9ad7a..0000000
--- a/src/apple_silicon/.editorconfig
+++ /dev/null
@@ -1,23 +0,0 @@
-# EditorConfig helps developers define and maintain consistent
-# coding styles between different editors and IDEs
-# editorconfig.org
-
-root = true
-
-[*]
-charset = utf-8
-end_of_line = lf
-insert_final_newline = true
-trim_trailing_whitespace = true
-indent_style = space
-
-[*.rs]
-indent_size = 4
-
-[*.toml]
-indent_size = 2
-
-[*.{diff,patch}]
-end_of_line = unset
-insert_final_newline = unset
-trim_trailing_whitespace = unset
diff --git a/src/apple_silicon/.github/dependabot.yml b/src/apple_silicon/.github/dependabot.yml
deleted file mode 100644
index d062b44..0000000
--- a/src/apple_silicon/.github/dependabot.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-version: 2
-updates:
- - package-ecosystem: "github-actions"
- directory: "/"
- schedule:
- interval: "weekly"
- - package-ecosystem: "cargo"
- directory: "/"
- schedule:
- interval: "weekly"
diff --git a/src/apple_silicon/.github/workflows/ci.yml b/src/apple_silicon/.github/workflows/ci.yml
deleted file mode 100644
index 59ce8e7..0000000
--- a/src/apple_silicon/.github/workflows/ci.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-name: 🦀 Rust CI
-
-on:
- push:
- branches: [ "main" ]
- pull_request:
- branches: [ "main" ]
-
-env:
- CARGO_TERM_COLOR: always
-
-jobs:
- build:
- runs-on: macos-latest
-
- steps:
- - uses: actions/checkout@v4
-
- - uses: dtolnay/rust-toolchain@stable
- with:
- components: rustfmt, clippy
-
- - uses: Swatinem/rust-cache@v2
-
- - name: Check formatting
- run: cargo fmt --all -- --check
-
- - name: Run clippy
- run: cargo clippy -- -D warnings
-
- - name: Run tests
- run: cargo test --verbose
-
- - name: Build
- run: cargo build --verbose
diff --git a/src/apple_silicon/.gitignore b/src/apple_silicon/.gitignore
deleted file mode 100644
index ea8c4bf..0000000
--- a/src/apple_silicon/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/target