-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (47 loc) · 1009 Bytes
/
Cargo.toml
File metadata and controls
50 lines (47 loc) · 1009 Bytes
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
[package]
name = "pluginsystem"
version = "2.0.0"
edition = "2024"
[dependencies]
anyhow = "1.0"
crossbeam-channel = "0.5"
log = "0.4"
once_cell = "1.21"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = [
"rt-multi-thread",
"macros",
"sync",
"fs",
"time",
] }
futures-util = "0.3"
zip = "6.0"
pollster = "0.4"
corelib = { path = "../core" }
os_info = "3.7"
sys-locale = "0.3"
whoami = "1.5"
rand = { version = "0.9", features = ["std"] }
chrono = "0.4"
base64 = "0.22"
pb = { path = "../pb" }
prost = "0.14.1"
# Wasmtime
wasmtime = { version = "38.0.3", features = [
"async",
"component-model",
"component-model-async",
"pulley",
] }
wasmtime-wasi = "38.0.3"
sha2 = "0.10"
hex = "0.4"
# Wasmtime WASI APIs
wasmtime-wasi-http = "38.0.3"
tauri = { version = "2.9.2", features = ["rustls-tls"] }
tauri-plugin-dialog = "2"
tauri-plugin-fs = "2"
tauri-plugin-opener = "2.5.2"
frontbridge = { path = "../frontbridge" }