Skip to content

Commit 074e36c

Browse files
author
bors-servo
authored
Auto merge of #26024 - servo:backtrace, r=jdm
Update backtrace to 0.3.46 rust-lang/backtrace-rs#299 landed so we can stop patching backtrace in our tree.
2 parents 6ca767d + ba7e7e2 commit 074e36c

File tree

7 files changed

+26
-25
lines changed

7 files changed

+26
-25
lines changed

Cargo.lock

+6-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,3 @@ mio = { git = "https://github.com/servo/mio.git", branch = "servo" }
3131
# https://github.com/retep998/winapi-rs/pull/816
3232
winapi = { git = "https://github.com/servo/winapi-rs", branch = "patch-1" }
3333
spirv_cross = { git = "https://github.com/servo/spirv_cross", branch = "wgpu-servo" }
34-
backtrace = { git = "https://github.com/MeFisto94/backtrace-rs", branch = "fix-strtab-freeing-crash" }

components/background_hang_monitor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ test = false
1313
doctest = false
1414

1515
[dependencies]
16-
backtrace = "0.3"
16+
backtrace = "0.3.46"
1717
ipc-channel = "0.14"
1818
libc = "0.2"
1919
log = "0.4"

components/constellation/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ path = "lib.rs"
1212

1313
[dependencies]
1414
background_hang_monitor = { path = "../background_hang_monitor"}
15-
backtrace = "0.3"
15+
backtrace = "0.3.46"
1616
bluetooth_traits = { path = "../bluetooth_traits" }
1717
canvas_traits = {path = "../canvas_traits"}
1818
compositing = {path = "../compositing"}
1919
crossbeam-channel = "0.4"
2020
debugger = {path = "../debugger"}
2121
devtools_traits = {path = "../devtools_traits"}
22-
euclid = "0.20"
2322
embedder_traits = { path = "../embedder_traits" }
23+
euclid = "0.20"
2424
gfx = {path = "../gfx"}
2525
gfx_traits = {path = "../gfx_traits"}
2626
http = "0.1"
2727
ipc-channel = "0.14"
28-
layout_traits = {path = "../layout_traits"}
2928
keyboard-types = "0.4.3"
29+
layout_traits = {path = "../layout_traits"}
3030
log = "0.4"
3131
media = {path = "../media"}
3232
metrics = {path = "../metrics"}
@@ -36,15 +36,15 @@ net_traits = {path = "../net_traits"}
3636
profile_traits = {path = "../profile_traits"}
3737
script_traits = {path = "../script_traits"}
3838
serde = "1.0"
39-
style_traits = {path = "../style_traits"}
4039
servo_config = {path = "../config"}
4140
servo_geometry = {path = "../geometry"}
4241
servo_rand = {path = "../rand"}
4342
servo_remutex = {path = "../remutex"}
4443
servo_url = {path = "../url"}
44+
style_traits = {path = "../style_traits"}
4545
webgpu = {path = "../webgpu"}
46-
webvr_traits = {path = "../webvr_traits"}
4746
webrender_api = {git = "https://github.com/servo/webrender"}
47+
webvr_traits = {path = "../webvr_traits"}
4848
webxr-api = {git = "https://github.com/servo/webxr", features = ["ipc"]}
4949

5050
[target.'cfg(all(not(target_os = "windows"), not(target_os = "ios"), not(target_os="android"), not(target_arch="arm"), not(target_arch="aarch64")))'.dependencies]

components/script/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ serde_json = "1.0"
3232
[dependencies]
3333
accountable-refcell = {version = "0.2.0", optional = true}
3434
app_units = "0.7"
35-
backtrace = {version = "0.3", optional = true}
35+
backtrace = {version = "0.3.46", optional = true}
3636
base64 = "0.10.1"
3737
bincode = "1"
3838
bitflags = "1.0"
3939
bluetooth_traits = {path = "../bluetooth_traits"}
4040
canvas_traits = {path = "../canvas_traits"}
4141
caseless = "0.2"
42+
chrono = "0.4"
4243
content-security-policy = {version = "0.3.0", features = ["serde"]}
4344
cookie = "0.11"
44-
chrono = "0.4"
4545
crossbeam-channel = "0.4"
4646
cssparser = "0.27"
4747
deny_public_fields = {path = "../deny_public_fields"}
@@ -62,8 +62,8 @@ image = "0.23"
6262
indexmap = "1.0.2"
6363
ipc-channel = "0.14"
6464
itertools = "0.8"
65-
jstraceable_derive = {path = "../jstraceable_derive"}
6665
js = {package = "mozjs", git = "https://github.com/servo/rust-mozjs"}
66+
jstraceable_derive = {path = "../jstraceable_derive"}
6767
keyboard-types = "0.4.4"
6868
lazy_static = "1"
6969
libc = "0.2"
@@ -72,9 +72,9 @@ malloc_size_of = { path = "../malloc_size_of" }
7272
malloc_size_of_derive = "0.1"
7373
media = {path = "../media"}
7474
metrics = {path = "../metrics"}
75-
mitochondria = "1.1.2"
7675
mime = "0.3.13"
7776
mime_guess = "2.0.0-alpha.6"
77+
mitochondria = "1.1.2"
7878
msg = {path = "../msg"}
7979
net_traits = {path = "../net_traits"}
8080
num-traits = "0.2"
@@ -97,11 +97,11 @@ servo_arc = {path = "../servo_arc"}
9797
servo_atoms = {path = "../atoms"}
9898
servo_config = {path = "../config"}
9999
servo_geometry = {path = "../geometry" }
100-
servo-media = {git = "https://github.com/servo/media"}
101100
servo_rand = {path = "../rand"}
102101
servo_url = {path = "../url"}
103-
sparkle = "0.1"
102+
servo-media = {git = "https://github.com/servo/media"}
104103
smallvec = { version = "0.6", features = ["std", "union"] }
104+
sparkle = "0.1"
105105
style = {path = "../style", features = ["servo"]}
106106
style_traits = {path = "../style_traits"}
107107
swapper = "0.1"
@@ -112,12 +112,12 @@ unicode-segmentation = "1.1.0"
112112
url = "2.0"
113113
utf-8 = "0.7"
114114
uuid = {version = "0.8", features = ["v4", "serde"]}
115-
xml5ever = "0.16"
116115
webdriver = "0.40"
117116
webgpu = {path = "../webgpu"}
118117
webrender_api = {git = "https://github.com/servo/webrender"}
119118
webvr_traits = {path = "../webvr_traits"}
120119
webxr-api = {git = "https://github.com/servo/webxr", features = ["ipc"]}
120+
xml5ever = "0.16"
121121

122122
[target.'cfg(not(target_os = "ios"))'.dependencies]
123123
mozangle = "0.2"

ports/glutin/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,23 +48,23 @@ vslatestinstalled = ["libservo/vslatestinstalled"]
4848
xr-profile = ["libservo/xr-profile"]
4949

5050
[target.'cfg(not(target_os = "android"))'.dependencies]
51-
backtrace = "0.3"
51+
backtrace = "0.3.46"
5252
clipboard = "0.5"
5353
euclid = "0.20"
5454
getopts = "0.2.11"
5555
gleam = "0.9"
5656
glutin = "0.21.0"
5757
keyboard-types = "0.4.3"
5858
lazy_static = "1"
59-
libservo = {path = "../../components/servo"}
6059
libc = "0.2"
60+
libservo = {path = "../../components/servo"}
6161
log = "0.4"
6262
rust-webvr = { version = "0.19", features = ["glwindow"] }
6363
servo-media = {git = "https://github.com/servo/media"}
6464
shellwords = "1.0.0"
6565
tinyfiledialogs = "3.0"
66-
webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }
6766
webxr = { git = "https://github.com/servo/webxr", features = ["ipc", "glwindow", "headless"] }
67+
webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }
6868

6969
[target.'cfg(any(target_os = "linux", target_os = "windows"))'.dependencies]
7070
image = "0.23"

ports/libsimpleservo/capi/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ test = false
1313
bench = false
1414

1515
[dependencies]
16-
simpleservo = { path = "../api" }
17-
log = "0.4"
18-
lazy_static = "1"
16+
backtrace = "0.3.46"
1917
env_logger = "0.7"
20-
backtrace = "0.3"
18+
lazy_static = "1"
19+
log = "0.4"
20+
simpleservo = { path = "../api" }
2121

2222
[target.'cfg(target_os = "windows")'.dependencies]
2323
libc = "0.2"

0 commit comments

Comments
 (0)