Bug 1698238 add a GetUserMediaRequest variant for selectAudioOutput() r=jib,emilio
[gecko.git] / Cargo.toml
blob6820a424eafa358440b623fb6e67b5e268581dd7
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/library/gtest/rust",
16   "toolkit/library/rust/",
17   "toolkit/mozapps/defaultagent/rust",
20 # Excluded crates may be built as dependencies, but won't be considered members
21 # of the workspace and their dev-dependencies won't be included.
22 exclude = [
23   # Excluded because it's for a toolchain task
24   "build/liblowercase",
26   # Exclude third-party code vendored into mozilla-central.
27   "servo",
28   "third_party/rust",
30   # Excluded because these crates have their own Cargo workspaces so they can't
31   # be included in the top-level one.
32   "gfx/wgpu",
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 # Explicitly specify what our profiles use.  The opt-level setting here is
46 # a total fiction; see the setup of MOZ_RUST_DEFAULT_FLAGS for what the
47 # opt-level setting will be as a result of various other configure flags.
48 [profile.dev]
49 opt-level = 1
50 rpath = false
51 lto = false
52 debug-assertions = true
53 panic = "abort"
55 [profile.release]
56 opt-level = 2
57 rpath = false
58 debug-assertions = false
59 panic = "abort"
61 # Optimize build dependencies, because bindgen and proc macros / style
62 # compilation take more to run than to build otherwise.
63 [profile.dev.build-override]
64 opt-level = 1
66 [profile.release.build-override]
67 opt-level = 1
69 # optimizing glsl more makes a big difference in swgl build times
70 [profile.dev.package.glsl]
71 opt-level = 2
73 [profile.release.package.glsl]
74 opt-level = 2
76 [patch.crates-io]
77 chardetng = { git = "https://github.com/hsivonen/chardetng", rev="fd4ed671ef495af4dcda4c4cba3ef8d426db8af1" }
78 chardetng_c = { git = "https://github.com/hsivonen/chardetng_c", rev="ed8a4c6f900a90d4dbc1d64b856e61490a1c3570" }
79 libudev-sys = { path = "dom/webauthn/libudev-sys" }
80 packed_simd = { git = "https://github.com/hsivonen/packed_simd", rev="0917fe780032a6bbb23d71be545f9c1834128d75" }
81 rlbox_lucet_sandbox = { git = "https://github.com/PLSysSec/rlbox_lucet_sandbox/", rev="f3cace4fb8b53db0849c62af4fa62bade5a620f7" }
82 nix = { git = "https://github.com/shravanrn/nix/", rev="4af6c367603869a30fddb5ffb0aba2b9477ba92e" }
83 spirv_cross = { git = "https://github.com/kvark/spirv_cross", branch = "wgpu5" }
84 # failure's backtrace feature might break our builds, see bug 1608157.
85 failure = { git = "https://github.com/badboy/failure", rev = "64af847bc5fdcb6d2438bec8a6030812a80519a5" }
86 failure_derive = { git = "https://github.com/badboy/failure", rev = "64af847bc5fdcb6d2438bec8a6030812a80519a5" }
87 minidump_writer_linux = { git = "https://github.com/msirringhaus/minidump_writer_linux.git", rev = "01c7a0da8d34059f7dae8ab9e7512529ff16347a" }
88 xmldecl = { git = "https://github.com/hsivonen/xmldecl", rev="a74f7df5bf6cb11194fb74daa0c3cf42f326fd90" }
90 [patch.crates-io.cranelift-codegen]
91 git = "https://github.com/mozilla-spidermonkey/wasmtime"
92 rev = "a25399760e9f12b679aa267dd2af7cfedc72bb71"
94 [patch.crates-io.cranelift-wasm]
95 git = "https://github.com/mozilla-spidermonkey/wasmtime"
96 rev = "a25399760e9f12b679aa267dd2af7cfedc72bb71"
98 # Patch autocfg to hide rustc output. Workaround for https://github.com/cuviper/autocfg/issues/30
99 [patch.crates-io.autocfg]
100 path = "third_party/rust/autocfg"
102 [patch.crates-io.autocfg01]
103 path = "third_party/rust/autocfg-0.1.6"
104 package = "autocfg"