-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (55 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
60 lines (55 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "buzee"
version = "0.2.0"
description = "Find your documents, effortlessly"
authors = ["Gurjot Sidhu"]
license = "MIT"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
edition = "2021"
authors = ["Gurjot Sidhu"]
license = "MIT"
[build-dependencies]
tauri-build = { version = "2.0.3", features = [] }
[dependencies]
tauri = { version = "2.1.1", features = [] }
tauri-plugin-shell = "2.1.1"
tauri-plugin-updater = { version = "2.1.1", features = ["rustls-tls"] }
tauri-plugin-dialog = "2.1.1"
drag = { path = "./crates/drag", version = "0.4.0", features = [ "serde" ] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1.0"
open = "5.1.1"
dotenvy = "0.15.7"
dirs = "5.0.1"
diesel = { version = "2.1.4", features = ["sqlite", "r2d2", "chrono", "time"] }
chrono = "0.4.26"
notify = "4.0.17"
jwalk = "0.8.1"
dotext = "0.1.1"
log = "0.4.21"
simple-logging = "2.0.2"
regex = "1.10.3"
lazy_static = "1.4.0"
tauri-plugin-global-shortcut = "2.1.1"
tokio = { version = "1.36.0", features = ["full"] }
tokio-graceful-shutdown = "0.14.3"
epub = "2.1.1"
mobi = "0.8.0"
schedule = "0.1.0"
futures = "0.3.30"
base64 = "0.21"
serialize-to-javascript = "0.1.1"
reqwest = { version = "0.12", features = ["blocking", "json"] }
zip = "0.6"
pdf-extract = "0.7.7"
jfs = "0.9.0"
xml-rs = "0.8.20"
tantivy = "0.22.0"
csv = "1.3.0"
rusqlite = "0.31.0"