Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/debugging-perfs #86

Open
wants to merge 20 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"tauri": "tauri",
"tauri:build": "tauri build",
"tauri:dev": "tauri dev",
"tauri:dev-release": "tauri dev --release",
"fmt": "cd ./src-tauri && cargo fmt && cd .."
},
"eslintConfig": {
Expand Down
81 changes: 81 additions & 0 deletions src-tauri/Cargo.lock

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

2 changes: 2 additions & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ sentry-slog = "0.27.0"
raw-window-handle = "0.5" # This has to be in sync with the version used by tauri
libscreenshot = { git = "https://github.com/MadrigalStreetCartel/libscreenshot"}

# Utils
palette = "0.7.5"
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
Expand Down
Loading