forked from mediar-ai/screenpipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (33 loc) · 931 Bytes
/
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
[workspace]
members = [
"screenpipe-core",
"screenpipe-vision",
"screenpipe-audio",
"screenpipe-server",
"screenpipe-integrations",
]
exclude = [
"examples/apps/screenpipe-app-tauri/src-tauri",
]
resolver = "2"
[workspace.package]
version = "0.1.61"
authors = ["louis030195 <[email protected]>"]
description = ""
repository = "https://github.com/louis030195/screen-pipe"
license = "MIT OR Apache-2.0"
edition = "2021"
[workspace.dependencies]
log = "0.4"
candle = { package = "candle-core", version = "0.6.0" }
candle-nn = { package = "candle-nn", version = "0.6.0" }
candle-transformers = { package = "candle-transformers", version = "0.6.0" }
tokenizers = "0.19.1"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tokio = { version = "1.15", features = ["full", "tracing"] }
hf-hub = "0.3.0"
crossbeam = "0.8.4"
image = "0.25"
# dev
criterion = { version = "0.5.1", features = ["async_tokio"] }