-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 951 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (29 loc) · 951 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
[package]
name = "tauri-plugin-deno"
version = "0.3.0"
authors = [ "Marco Mengelkoch" ]
description = "A tauri 2 plugin to use javascript code (deno) in the backend."
edition = "2021"
rust-version = "1.77.2"
exclude = ["/examples", "/webview-dist", "/webview-src", "/node_modules"]
links = "tauri-plugin-deno"
license = "MIT"
homepage = "https://github.com/marcomq/tauri-plugin-deno"
repository = "https://github.com/marcomq/tauri-plugin-deno"
[dependencies]
tauri = { version = "2" }
serde = "1.0"
thiserror = "2"
deno_core = "0.338"
deno_fs = "0.103.0"
deno_error = "0.5.5"
deno_runtime = { version = "0.201", features = ["transpile"] }
deno_resolver = "0.24.0"
sys_traits = "0.1.8"
reqwest = "0.12"
tokio = { version = "1.43.0", features = ["full"] }
lazy_static = "1.5.0"
[build-dependencies]
tauri-plugin = { version = "2", features = ["build"] }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["sysinfoapi"] }