-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
60 lines (46 loc) · 1.3 KB
/
Cargo.toml
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 = "xrem"
version = "0.0.0"
description = "A Tauri App"
authors = ["Jason McGhee <[email protected]>"]
license = "MIT"
repository = "jasonjmcghee/xrem"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.5", features = [] }
[dependencies]
tauri = { version = "1.5", features = ["system-tray", "shell-open"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Cross-platform screen capture
screenshots = "0.8.6"
# threadpool
threadpool = "1.8.1"
# Image processing
image = "0.24.7"
# OCR
rusty-tesseract = "1.1.9"
# Dates
chrono = "0.4.31"
rusqlite = { version = "0.30.0", features = ["chrono", "bundled", "array"] }
# FFmpeg bindings
ffmpeg-next = "6.1.0"
# Embeddings
candle = { package = "candle-core", version = "0.3.2" }
candle-nn = "0.3.2"
candle-transformers = "0.3.2"
tokenizers = "0.15.0"
lazy_static = "1.4.0"
base64 = "0.21.7"
# Server
axum = "0.7.4"
tokio = { version = "1", features = ["full"] }
hyper = "1.1"
tower-http = { version = "0.5.0", features = ["cors"] }
[profile.release]
opt-level = 3
[features]
# this feature is used for production builds or when `devPath` points to the filesystem
# DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]