Skip to content

Commit 91a9d50

Browse files
committed
chore: add regex dependency
1 parent 4b65c5a commit 91a9d50

File tree

2 files changed

+58
-24
lines changed

2 files changed

+58
-24
lines changed

src-tauri/Cargo.lock

Lines changed: 51 additions & 19 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: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,28 @@ crate-type = ["staticlib", "cdylib", "rlib"]
2020
tauri-build = { version = "2.0.5", features = [] }
2121

2222
[dependencies]
23-
shell-words = "1.1.0"
2423
tauri = { version = "2.2.2", features = ["tray-icon"] }
2524
tauri-plugin-shell = "2.2.0"
2625
tauri-plugin-dialog = "2.2.0"
2726
tauri-plugin-notification = "2.2.1"
2827
tauri-plugin-single-instance = "2.2.1"
28+
tauri-plugin-opener = "2"
29+
tauri-plugin-http = "2"
2930

31+
shell-words = "1.1.0"
3032
notify = "8.0.0"
3133
directories = "6.0.0"
3234
serde = { version = "1.0.217", features = ["derive"] }
33-
serde_json = "1.0.135"
34-
toml = "0.8.19"
35+
serde_json = "1.0.138"
36+
csv = "1.1.6"
37+
toml = "0.8.20"
3538
lazy_static = "1.5.0"
3639
log = "0.4.25"
3740
fern = { version = "0.7.1", features = ["colored"] }
3841
chrono = "0.4.39"
42+
regex = "1.11.1"
3943
aw-server = { git = "https://github.com/ActivityWatch/aw-server-rust.git", branch = "master" }
4044
aw-datastore = { git = "https://github.com/ActivityWatch/aw-server-rust.git", branch = "master" }
41-
tauri-plugin-opener = "2"
42-
tauri-plugin-http = "2"
4345
[target.'cfg(unix)'.dependencies]
4446
nix = { version = "0.29.0", features = ["process", "signal"] }
4547
[target.'cfg(windows)'.dependencies]

0 commit comments

Comments
 (0)