-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
26 lines (24 loc) · 885 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
[package]
name = "flutter_embedder"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "3.1.12", features = ["derive"] }
log = { version = "0.4.17", features = ["std"] }
env_logger = "0.9"
# wgpu = "0.13.1"
# wgpu-hal = { version = "0.13.1", features = ["vulkan"] }
wgpu = { git = "https://github.com/gfx-rs/wgpu", branch = "master" }
wgpu-hal = { git = "https://github.com/gfx-rs/wgpu", branch = "master", features = ["vulkan"] }
# winit = "0.27.1"
winit = { git = "https://github.com/anlumo/winit-new-keyboard.git", branch = "new-keyboard-linux", default-features = false, features = ["x11"] }
tokio = { version = "1.19.2", features = ["full"] }
ash = "0.37.0"
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85"
arboard = "2.1.1"
num-derive = "0.3.3"
num-traits = "0.2.15"
serde_variant = "0.1.1"
[build-dependencies]
bindgen = "0.60.1"