Bug 1692971 [wpt PR 27638] - WebKit export of https://bugs.webkit.org/show_bug.cgi...
[gecko.git] / Cargo.toml
blob4076a605776f95a14a95bbd329f7d24e95fbe961
1 [workspace]
3 # These are the "root" crates, which we build and test as top-level targets.
4 # Their transitive dependencies and dev-dependencies are included automatically
5 # and do not need to be listed here. Their external dependencies are vendored
6 # into `third_party/rust` by `mach vendor rust`.
7 members = [
8   "js/rust",
9   "js/src",
10   "js/src/frontend/smoosh",
11   "js/src/rust",
12   "js/src/wasm/cranelift",
13   "netwerk/test/http3server",
14   "security/manager/ssl/osclientcerts",
15   "testing/geckodriver",
16   "toolkit/crashreporter/rust_minidump_writer_linux",
17   "toolkit/library/gtest/rust",
18   "toolkit/library/rust/",
19   "toolkit/mozapps/defaultagent/rust",
22 # Excluded crates may be built as dependencies, but won't be considered members
23 # of the workspace and their dev-dependencies won't be included.
24 exclude = [
25   # Excluded because it's for a toolchain task
26   "build/liblowercase",
28   # Exclude third-party code vendored into mozilla-central.
29   "servo",
30   "third_party/rust",
32   # Excluded because these crates have their own Cargo workspaces so they can't
33   # be included in the top-level one.
34   "gfx/wgpu",
35   "gfx/wr",
37   # Excluded because they are used only as dependencies, not top-level targets,
38   # so we don't need to vendor their dev-dependencies.
39   "gfx/webrender_bindings",
40   "media/mp4parse-rust/mp4parse",
41   "media/mp4parse-rust/mp4parse_capi",
42   "xpcom/rust/gkrust_utils",
43   "tools/lint/test/files/clippy",
44   "tools/fuzzing/rust",
47 # Explicitly specify what our profiles use.  The opt-level setting here is
48 # a total fiction; see the setup of MOZ_RUST_DEFAULT_FLAGS for what the
49 # opt-level setting will be as a result of various other configure flags.
50 [profile.dev]
51 opt-level = 1
52 rpath = false
53 lto = false
54 debug-assertions = true
55 panic = "abort"
57 [profile.release]
58 opt-level = 2
59 rpath = false
60 debug-assertions = false
61 panic = "abort"
63 # Optimize build dependencies, because bindgen and proc macros / style
64 # compilation take more to run than to build otherwise.
65 [profile.dev.build-override]
66 opt-level = 1
68 [profile.release.build-override]
69 opt-level = 1
71 [patch.crates-io]
72 chardetng = { git = "https://github.com/hsivonen/chardetng", rev="fd4ed671ef495af4dcda4c4cba3ef8d426db8af1" }
73 chardetng_c = { git = "https://github.com/hsivonen/chardetng_c", rev="ed8a4c6f900a90d4dbc1d64b856e61490a1c3570" }
74 libudev-sys = { path = "dom/webauthn/libudev-sys" }
75 packed_simd = { git = "https://github.com/hsivonen/packed_simd", rev="0917fe780032a6bbb23d71be545f9c1834128d75" }
76 rlbox_lucet_sandbox = { git = "https://github.com/PLSysSec/rlbox_lucet_sandbox/", rev="f3cace4fb8b53db0849c62af4fa62bade5a620f7" }
77 nix = { git = "https://github.com/shravanrn/nix/", rev="4af6c367603869a30fddb5ffb0aba2b9477ba92e" }
78 spirv_cross = { git = "https://github.com/kvark/spirv_cross", branch = "wgpu4" }
79 # failure's backtrace feature might break our builds, see bug 1608157.
80 failure = { git = "https://github.com/badboy/failure", rev = "64af847bc5fdcb6d2438bec8a6030812a80519a5" }
81 failure_derive = { git = "https://github.com/badboy/failure", rev = "64af847bc5fdcb6d2438bec8a6030812a80519a5" }
82 minidump_writer_linux = { git = "https://github.com/msirringhaus/minidump_writer_linux.git", rev = "9191af36343846b2c7ada65b9602b481b717c4d8" }
84 [patch.crates-io.cranelift-codegen]
85 git = "https://github.com/mozilla-spidermonkey/wasmtime"
86 rev = "a25399760e9f12b679aa267dd2af7cfedc72bb71"
88 [patch.crates-io.cranelift-wasm]
89 git = "https://github.com/mozilla-spidermonkey/wasmtime"
90 rev = "a25399760e9f12b679aa267dd2af7cfedc72bb71"
92 # Patch autocfg to hide rustc output. Workaround for https://github.com/cuviper/autocfg/issues/30
93 [patch.crates-io.autocfg]
94 path = "third_party/rust/autocfg"
96 [patch.crates-io.autocfg01]
97 path = "third_party/rust/autocfg-0.1.6"
98 package = "autocfg"