-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (79 loc) · 2.78 KB
/
Cargo.toml
File metadata and controls
81 lines (79 loc) · 2.78 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
72
73
74
75
76
77
78
79
80
81
[workspace]
resolver = "2"
members = ["crates/jsbindings", "crates/runtime_apis"]
[workspace.dependencies]
backtrace = "0.3"
base64 = "0.21.7"
bitflags = "2.5"
cfg-if = "1.0.0"
content-security-policy = { version = "0.5", features = ["serde"] }
cookie = "0.12"
cssparser = { version = "0.35", features = ["serde"] }
cxx = { version = "1.0" }
cxx-build = { version = "1.0" }
data-url = "0.3.1"
euclid = "0.22"
fnv = "1.0"
getopts = "0.2.11"
gleam = "0.15"
glsl-lang = { git = "https://github.com/jsar-project/glsl-lang", branch = "20250904", features = ["lexer-full"] }
glsl-lang-pp = { git = "https://github.com/jsar-project/glsl-lang", branch = "20250904", features = ["full"] }
headers = "0.3"
hyper = "0.14"
hyper-rustls = { version = "0.24", default-features = false, features = [
"acceptor",
"http1",
"http2",
"logging",
"tls12",
"webpki-tokio",
] }
jemallocator = "0.5.4"
jemalloc-sys = "0.5.4"
keyboard-types = "0.6"
lazy_static = "1.4"
libc = "0.2"
log = "0.4"
mime = "0.3.13"
mime_guess = "2.0.3"
num_cpus = "1.1.0"
num-traits = "0.2"
parking_lot = "0.12"
percent-encoding = "2.3"
proc-macro2 = "1"
quote = "1"
serde = "1.0.198"
serde_bytes = "0.11"
serde_json = "1.0"
slab = "0.4.9"
smallvec = "1.13"
string_cache = "0.8.7"
stylo = { git = "https://github.com/m-creativelab/stylo", branch = "2025-06-03-jsar-20250723", features = [
"servo",
] }
stylo_config = { git = "https://github.com/m-creativelab/stylo", branch = "2025-06-03-jsar-20250723" }
stylo_traits = { git = "https://github.com/m-creativelab/stylo", branch = "2025-06-03-jsar-20250723", features = [
"servo",
] }
selectors = { git = "https://github.com/m-creativelab/stylo", branch = "2025-06-03-jsar-20250723" }
surfman = "0.9.2"
syn = { version = "2", default-features = false, features = [
"clone-impls",
"derive",
"parsing",
] }
taffy = { version = "0.8.0" }
time = "0.1.41"
url = "2.5"
uuid = { version = "1.8.0", features = ["v4"] }
# Patch to use the forked glsl-lang repository.
[patch.crates-io]
glsl-lang = { git = "https://github.com/jsar-project/glsl-lang", branch = "20250904" }
glsl-lang-pp = { git = "https://github.com/jsar-project/glsl-lang", branch = "20250904" }
glsl-lang-lexer = { git = "https://github.com/jsar-project/glsl-lang", branch = "20250904" }
glsl-lang-types = { git = "https://github.com/jsar-project/glsl-lang", branch = "20250904" }
glsl-lang-quote = { git = "https://github.com/jsar-project/glsl-lang", branch = "20250904" }
glsl-lang-cli = { git = "https://github.com/jsar-project/glsl-lang", branch = "20250904" }
lang-util = { git = "https://github.com/jsar-project/glsl-lang", branch = "20250904" }
lang-util-derive = { git = "https://github.com/jsar-project/glsl-lang", branch = "20250904" }
lang-util-dev = { git = "https://github.com/jsar-project/glsl-lang", branch = "20250904" }