Skip to content

Commit 0130641

Browse files
authored
Merge pull request CyberTimon#863 from RayJW/rawler-cargo-dependency
Replace rawler Submodule With Cargo Dependency
2 parents 61c9c1f + 23107ad commit 0130641

7 files changed

Lines changed: 5 additions & 13 deletions

File tree

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ jobs:
4444
repository: ${{ inputs.repository }}
4545
ref: ${{ inputs.ref }}
4646
fetch-depth: 0
47-
submodules: recursive
4847

4948
- name: Install Rust
5049
uses: actions-rust-lang/setup-rust-toolchain@v1

.github/workflows/lint.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15-
with:
16-
submodules: recursive
1715

1816
- uses: actions-rust-lang/setup-rust-toolchain@v1
1917
with:
@@ -30,8 +28,6 @@ jobs:
3028
runs-on: ubuntu-latest
3129
steps:
3230
- uses: actions/checkout@v4
33-
with:
34-
submodules: recursive
3531

3632
- uses: actions-rust-lang/setup-rust-toolchain@v1
3733
with:
@@ -50,4 +46,4 @@ jobs:
5046
5147
- name: Clippy
5248
working-directory: src-tauri
53-
run: cargo clippy -p RapidRAW --all-targets -- -W clippy::all
49+
run: cargo clippy --all-targets --all-features -- -D warnings

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,8 +466,8 @@ You have two options to run RapidRAW:
466466
If you want to build the project yourself, you'll need to have [Rust](https://www.rust-lang.org/tools/install) and [Node.js](https://nodejs.org/) installed.
467467

468468
```bash
469-
# 1. Clone the repository (including the rawler/dnglab submodule)
470-
git clone https://github.com/CyberTimon/RapidRAW.git --recurse-submodules
469+
# 1. Clone the repository
470+
git clone https://github.com/CyberTimon/RapidRAW.git
471471
cd RapidRAW
472472

473473
# 2. Install frontend dependencies

src-tauri/Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pollster = "0.4"
2222
bytemuck = { version = "1.25", features = ["derive"] }
2323
anyhow = "1.0.102"
2424
kamadak-exif = "0.6.1"
25-
rawler = { path = "rawler/rawler" }
25+
rawler = { git = "https://github.com/CyberTimon/RapidRAW-DngLab.git" }
2626
serde_bytes = "0.11.19"
2727
tokio = { version = "1", features = ["full"] }
2828
uuid = { version = "1.22", features = ["v4", "serde"] }

src-tauri/rawler

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)