-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
47 lines (41 loc) · 1.04 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
workspace = { members = ["server"] }
[package]
name = "pluto-browser"
version = "0.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitflags = "^1.0"
once_cell = "1.8"
libc = "^0.2"
cairo-rs = "^0.18.0"
gdk = "^0.18.0"
gdk-sys = "^0.18.0"
gio = "^0.18.0"
gio-sys = "^0.18.0"
glib = "^0.18.0"
glib-sys = "^0.18.0"
gobject-sys = "^0.18.0"
gtk = "^0.18.0"
gtk-sys = "^0.18.0"
webkit2gtk = "2.0.1"
atk = "0.18.0"
regex = "1.10.3"
url = "2.5.0"
tokio = { version = "1.37.0", features = ["full"] }
[dependencies.java_script_core]
package = "javascriptcore-rs"
version = "=1.1"
[dependencies.soup]
package = "soup3"
version = "0.5"
[dependencies.ffi]
package = "webkit2gtk-sys"
version = "2.0.1"
[dependencies.uuid]
version = "1.8.0"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]