-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
44 lines (39 loc) · 937 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[workspace]
resolver = "2"
members = [
"download-cef",
"update-bindings",
"export-cef-dir",
"sys",
"cef",
]
[workspace.package]
version = "132.3.1"
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-dll-sys = { version = "132.3.1", path = "sys" }
download-cef = { version = "1.1", path = "download-cef" }
anyhow = "1.0"
bindgen = "0.71"
clap = { version = "4.5", features = ["derive"] }
cmake = "0.1"
convert_case = "0.7"
proc-macro2 = "1.0"
quote = "1.0"
regex = "1.0"
serde = { version = "1.0", features = ["derive"] }
syn = { version = "2.0", features = ["full"] }
thiserror = "2.0"
[workspace.dependencies.windows-sys]
version = "0.59"
features = [
"Win32_System_Environment",
"Win32_System_LibraryLoader",
]