forked from dungeonfog/cef
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 844 Bytes
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 844 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
[package]
name = "cef"
version = "0.1.0"
authors = ["Andreas Monitzer <andreas@monitzer.com>", "Osspial <osspial@gmail.com>"]
edition = "2018"
[dependencies]
cef-sys = { git = "https://github.com/anlumo/cef-sys.git" }
parking_lot = "0.9"
downcast-rs = "1.1"
libc = "0.2"
bitflags = "1"
lazy_static = "1"
chashmap = "2"
chrono = "0.4"
raw-window-handle = "0.3"
uuid = "0.8"
log = "0.4"
dunce = "1.0"
[dev-dependencies]
winit = "=0.20.0-alpha4"
wgpu = "0.4"
vk-shader-macros = "0.2.2"
log = { version = "0.4", features = ["std"] }
[features]
sandbox = []
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3" }
winit-blit = {git = "https://github.com/rust-windowing/winit-blit.git"}
[target.'cfg(windows)'.dev-dependencies]
winapi = { version = "0.3", features = ["winuser", "libloaderapi"] }
[workspace]
members = ["./examples"]