Skip to content

Commit

Permalink
Add Dependabot, Update Dependencies (#58)
Browse files Browse the repository at this point in the history
* Update build.yml

* Update package.json

* Update yarn.lock

* Update Cargo.toml

* Update Cargo.lock

* Create dependabot.yml
  • Loading branch information
CanerKaraca23 authored Jan 14, 2024
1 parent 549e1d0 commit 9dfb9dc
Show file tree
Hide file tree
Showing 6 changed files with 644 additions and 443 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"

- package-ecosystem: "cargo"
directory: "src-tauri"
schedule:
interval: "daily"
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
echo "artifact_name=${artifact_name}" >> $GITHUB_OUTPUT
- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.vars.outputs.artifact_name }}
path: src-tauri/target/release/omp-launcher.exe
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,32 @@
"start": "tauri dev"
},
"dependencies": {
"@react-native-clipboard/clipboard": "^1.12.1",
"@tauri-apps/api": "^1.4.0",
"axios": "^1.5.0",
"chart.js": "^4.4.0",
"i18next": "^23.7.3",
"@react-native-clipboard/clipboard": "^1.13.2",
"@tauri-apps/api": "^1.5.3",
"axios": "^1.6.5",
"chart.js": "^4.4.1",
"i18next": "^23.7.16",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.4.0",
"react-i18next": "^14.0.0",
"react-native-animatable": "^1.4.0",
"react-native-big-list": "^1.6.1",
"react-native-web": "^0.19.7",
"react-native-web": "^0.19.10",
"tauri-plugin-upload-api": "https://github.com/tauri-apps/tauri-plugin-upload#v1",
"zustand": "^4.4.1"
"zustand": "^4.4.7"
},
"devDependencies": {
"@tauri-apps/cli": "^1.4.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@tauri-apps/cli": "^1.5.9",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/react-native": "^0.72.2",
"@vitejs/plugin-react": "^4.0.3",
"@vitejs/plugin-react": "^4.2.1",
"babel-plugin-inline-import": "^3.0.0",
"babel-plugin-react-native-web": "^0.19.7",
"babel-plugin-react-native-web": "^0.19.10",
"typescript": "^5.0.2",
"vite": "^4.4.4"
"vite": "^5.0.11"
}
}
55 changes: 33 additions & 22 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "1.4", features = [] }
tauri-build = { version = "1.5", features = [] }

[dependencies]
tauri = { version = "1.4", features = [ "fs-all", "path-all", "macos-private-api", "process-all", "window-all", "dialog-all", "os-all", "shell-open"] }
tauri = { version = "1.5", features = [ "fs-all", "path-all", "macos-private-api", "process-all", "window-all", "dialog-all", "os-all", "shell-open"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.32.0", features = ["full"] }
byteorder = "1.4.3"
tokio = { version = "1.35.1", features = ["full"] }
byteorder = "1.5.0"
chardet = "0.2.4"
encoding = "0.2.33"
dirs-next = "2.0.0"
Expand All @@ -34,7 +34,7 @@ md5 = "0.7.0"

[target.'cfg(target_os = "windows")'.dependencies]
dll-syringe = "0.15.2"
winreg = "0.51.0"
winreg = "0.52.0"

[features]
# this feature is used for production builds or when `devPath` points to the filesystem
Expand Down
Loading

0 comments on commit 9dfb9dc

Please sign in to comment.