forked from tauri-apps/cef-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (65 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
71 lines (65 loc) · 1.54 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[workspace]
resolver = "2"
members = [
"download-cef",
"get-latest",
"update-bindings",
"export-cef-dir",
"sys",
"cef",
"examples/*",
]
[workspace.package]
version = "146.5.0+146.0.10"
edition = "2021"
license = "Apache-2.0 OR MIT"
authors = [
"Wu Yu Wei <yuweiwu@pm.me>",
"Bill Avery <wravery@gmail.com>",
"csmoe <csmoe@msn.com>",
]
repository = "https://github.com/tauri-apps/cef-rs"
[workspace.dependencies]
cef = { path = "cef", default-features = false }
cef-dll-sys = { version = "146.5.0", path = "sys" }
download-cef = { version = "2.3", path = "download-cef" }
anyhow = "1"
ash = "0.38"
bindgen = "0.72"
cargo_metadata = "0.23.1"
clap = { version = "4", features = ["derive"] }
cmake = "0.1.52"
convert_case = "0.11"
git-cliff = "2"
git-cliff-core = "2"
glib = "0.22"
glib-unix = "0.22"
io-surface = "0.16"
libc = "0.2"
libloading = "0.9"
metal = "0.33"
objc = "0.2"
objc2 = "0.6.3"
objc2-app-kit = { version = "0.3.2", default-features = false }
objc2-foundation = "0.3.2"
objc2-io-surface = "0.3.2"
plist = "1"
proc-macro2 = "1"
quote = "1"
regex = "1"
semver = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
syn = { version = "2", features = ["full"] }
thiserror = "2"
toml_edit = "0.25"
tracing = "0.1"
wgpu = "28"
winres = "0.1"
x11-dl = "2"
[workspace.dependencies.windows-sys]
version = "0.61"
features = ["Win32_System_Environment", "Win32_System_LibraryLoader", "Win32_UI_WindowsAndMessaging"]
[workspace.dependencies.windows]
version = "0.62"
features = ["Win32_Graphics_Direct3D12"]