Bug 1735741 [wpt PR 31230] - Add more <dialog> focus-related tests, a=testonly
[gecko.git] / Cargo.toml
blobcbd4b5c1c6cf7002c4cb4dc1861a452b8968ef21
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/src/frontend/smoosh",
9   "js/src/rust",
10   "js/src/wasm/cranelift",
11   "netwerk/test/http3server",
12   "security/manager/ssl/osclientcerts",
13   "testing/geckodriver",
14   "toolkit/crashreporter/rust_minidump_writer_linux",
15   "toolkit/crashreporter/mozwer-rust",
16   "toolkit/library/gtest/rust",
17   "toolkit/library/rust/",
18   "toolkit/mozapps/defaultagent/rust",
21 # Excluded crates may be built as dependencies, but won't be considered members
22 # of the workspace and their dev-dependencies won't be included.
23 exclude = [
24   # Excluded because it's for a toolchain task
25   "build/liblowercase",
27   # Exclude third-party code vendored into mozilla-central.
28   "servo",
29   "third_party/rust",
31   # Excluded because these crates have their own Cargo workspaces so they can't
32   # be included in the top-level one.
33   "gfx/wr",
35   # Excluded because they are used only as dependencies, not top-level targets,
36   # so we don't need to vendor their dev-dependencies.
37   "gfx/webrender_bindings",
38   "media/mp4parse-rust/mp4parse",
39   "media/mp4parse-rust/mp4parse_capi",
40   "xpcom/rust/gkrust_utils",
41   "tools/lint/test/files/clippy",
42   "tools/fuzzing/rust",
45 # Use the new dependency resolver to reduce some of the platform-specific dependencies.
46 # This is required for 'third_party/rust/wgpu-hal'
47 resolver = "2"
49 # Explicitly specify what our profiles use.  The opt-level setting here is
50 # a total fiction; see the setup of MOZ_RUST_DEFAULT_FLAGS for what the
51 # opt-level setting will be as a result of various other configure flags.
52 [profile.dev]
53 opt-level = 1
54 rpath = false
55 lto = false
56 debug-assertions = true
57 panic = "abort"
59 [profile.release]
60 opt-level = 2
61 rpath = false
62 debug-assertions = false
63 panic = "abort"
65 # Optimize build dependencies, because bindgen and proc macros / style
66 # compilation take more to run than to build otherwise.
67 [profile.dev.build-override]
68 opt-level = 1
70 [profile.release.build-override]
71 opt-level = 1
73 # optimizing glsl more makes a big difference in swgl build times
74 [profile.dev.package.glsl]
75 opt-level = 2
77 [profile.release.package.glsl]
78 opt-level = 2
80 [patch.crates-io]
81 chardetng = { git = "https://github.com/hsivonen/chardetng", rev="302c995f91f44cf26e77dc4758ad56c3ff0153ad" }
82 chardetng_c = { git = "https://github.com/hsivonen/chardetng_c", rev="ed8a4c6f900a90d4dbc1d64b856e61490a1c3570" }
83 libudev-sys = { path = "dom/webauthn/libudev-sys" }
84 packed_simd = { git = "https://github.com/hsivonen/packed_simd", rev="8b4bd7d8229660a749dbe419a57ea01df9de5453" }
85 minidump_writer_linux = { git = "https://github.com/msirringhaus/minidump_writer_linux.git", rev = "029ac0d54b237f27dc7d8d4e51bc0fb076e5e852" }
86 # The following overrides point to dummy projects, as a temporary measure until this is resolved:
87 # https://github.com/rust-lang/cargo/issues/6179
88 js-sys = { git = "https://github.com/kvark/dummy-web" }
89 slotmap = { git = "https://github.com/kvark/dummy-web" }
90 wasm-bindgen = { git = "https://github.com/kvark/dummy-web" }
91 web-sys = { git = "https://github.com/kvark/dummy-web" }
93 [patch.crates-io.cranelift-codegen]
94 git = "https://github.com/bytecodealliance/wasmtime"
95 rev = "824fa69756523f2b6d49029fe25de94130b1f144"
97 [patch.crates-io.cranelift-wasm]
98 git = "https://github.com/bytecodealliance/wasmtime"
99 rev = "824fa69756523f2b6d49029fe25de94130b1f144"
101 # Patch autocfg to hide rustc output. Workaround for https://github.com/cuviper/autocfg/issues/30
102 [patch.crates-io.autocfg]
103 path = "third_party/rust/autocfg"
106 # Patch mio 0.6 to use winapi 0.3 and miow 0.3, getting rid of winapi 0.2.
107 # There is not going to be new version of mio 0.6, mio now being >= 0.7.11.
108 [patch.crates-io.mio]
109 path = "third_party/rust/mio"
111 [patch.crates-io.prost-derive]
112 path = "third_party/rust/prost-derive"
114 # Patched to work around https://github.com/rust-lang/rust/issues/88576
115 [patch.crates-io.winapi-util]
116 path = "third_party/rust/winapi-util"