-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (47 loc) · 1.27 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
[package]
name = "wvwasi"
license = "MIT"
version = "0.2.0"
description = "A WebView with WASI may be the best JS/WASM runtime, and wvwasi is it."
repository = "https://github.com/defims/wvwasi"
homepage = "https://wvwasi.com"
keywords = ["webview", "wasi", "webassembly", "wasm", "rust"]
edition = "2021"
exclude = [ ".cargo" ]
[dependencies]
anyhow = "1.0.71"
regex = "1.9.1"
serde = { version = "1.0.166", features = ["derive"] }
serde_json = "1.0.100"
tokio = { version = "1.29.1", features = ["full"] }
wasi-cap-std-sync = "10.0.1"
wasi-common = "10.0.1"
webview2-com = "0.28"
wiggle = "10.0.1"
wry = "0.35.0"
tao = { version = "0.24", default-features = false, features = [ "rwh_05" ] }
const-utf16 = "0.2.1"
wvwasi-macro= { version = "0.1.2" }
[dependencies.windows]
version = "0.52"
features = [
"implement",
"Win32_Foundation",
"Win32_System_Com",
"Win32_System_Ole",
"Win32_Security",
"Win32_System_Threading",
"Win32_System_LibraryLoader",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Input_KeyboardAndMouse",
]
[dev-dependencies.windows]
version = "0.52"
features = [
"Win32_Graphics_Gdi",
"Win32_System_LibraryLoader",
"Win32_System_Threading",
"Win32_UI_HiDpi",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_WindowsAndMessaging",
]