-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (45 loc) · 1.19 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 = "fluyt"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["flutter-codec", "flutter-embedder"]
[dependencies]
bitflags = "2.5.0"
color-eyre = "0.6"
flutter-codec = { path = "flutter-codec" }
flutter-embedder = { path = "flutter-embedder" }
gl = "0.14"
khronos-egl = { version = "6.0", features = ["static", "no-pkg-config"] }
raw-window-handle = "0.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
smol_str = "0.2.2"
tracing = "0.1"
tracing-subscriber = "0.3"
winit = "0.29"
[dependencies.windows]
version = "0.52"
features = [
"Foundation_Numerics",
"Graphics_DirectX",
"System",
"UI_Composition",
"UI_Composition_Core",
"UI_Composition_Desktop",
"Win32_Foundation",
"Win32_Graphics_Direct3D",
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Dwm",
"Win32_Graphics_Dxgi",
"Win32_Graphics_Dxgi_Common",
"Win32_System_Registry",
"Win32_System_Threading",
"Win32_System_WinRT",
"Win32_System_WinRT_Composition",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
]
[build-dependencies]
dunce = "1.0"