Bug 1700051: part 51) Const-qualify `mozInlineSpellStatus::mCreatedRange`. r=smaug
[gecko.git] / Cargo.toml
blob77eb838d6d7c3b221b9f8060dd437c7aac3f4a20
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/wgpu",
34   "gfx/wr",
36   # Excluded because they are used only as dependencies, not top-level targets,
37   # so we don't need to vendor their dev-dependencies.
38   "gfx/webrender_bindings",
39   "media/mp4parse-rust/mp4parse",
40   "media/mp4parse-rust/mp4parse_capi",
41   "xpcom/rust/gkrust_utils",
42   "tools/lint/test/files/clippy",
43   "tools/fuzzing/rust",
46 # Explicitly specify what our profiles use.  The opt-level setting here is
47 # a total fiction; see the setup of MOZ_RUST_DEFAULT_FLAGS for what the
48 # opt-level setting will be as a result of various other configure flags.
49 [profile.dev]
50 opt-level = 1
51 rpath = false
52 lto = false
53 debug-assertions = true
54 panic = "abort"
56 [profile.release]
57 opt-level = 2
58 rpath = false
59 debug-assertions = false
60 panic = "abort"
62 # Optimize build dependencies, because bindgen and proc macros / style
63 # compilation take more to run than to build otherwise.
64 [profile.dev.build-override]
65 opt-level = 1
67 [profile.release.build-override]
68 opt-level = 1
70 # optimizing glsl more makes a big difference in swgl build times
71 [profile.dev.package.glsl]
72 opt-level = 2
74 [profile.release.package.glsl]
75 opt-level = 2
77 [patch.crates-io]
78 chardetng = { git = "https://github.com/hsivonen/chardetng", rev="39f95e2f7cd6e632a379cdeee62c68e8cedd7810" }
79 chardetng_c = { git = "https://github.com/hsivonen/chardetng_c", rev="ed8a4c6f900a90d4dbc1d64b856e61490a1c3570" }
80 libudev-sys = { path = "dom/webauthn/libudev-sys" }
81 packed_simd = { git = "https://github.com/hsivonen/packed_simd", rev="0917fe780032a6bbb23d71be545f9c1834128d75" }
82 rlbox_lucet_sandbox = { git = "https://github.com/PLSysSec/rlbox_lucet_sandbox/", rev="f3cace4fb8b53db0849c62af4fa62bade5a620f7" }
83 nix = { git = "https://github.com/shravanrn/nix/", rev="4af6c367603869a30fddb5ffb0aba2b9477ba92e" }
84 spirv_cross = { git = "https://github.com/kvark/spirv_cross", branch = "wgpu5" }
85 # failure's backtrace feature might break our builds, see bug 1608157.
86 failure = { git = "https://github.com/badboy/failure", rev = "64af847bc5fdcb6d2438bec8a6030812a80519a5" }
87 failure_derive = { git = "https://github.com/badboy/failure", rev = "64af847bc5fdcb6d2438bec8a6030812a80519a5" }
88 minidump_writer_linux = { git = "https://github.com/msirringhaus/minidump_writer_linux.git", rev = "47cba046aabef76233942a09f31e6ef7a8a4eda9" }
89 xmldecl = { git = "https://github.com/hsivonen/xmldecl", rev="a74f7df5bf6cb11194fb74daa0c3cf42f326fd90" }
91 [patch.crates-io.cranelift-codegen]
92 git = "https://github.com/mozilla-spidermonkey/wasmtime"
93 rev = "a25399760e9f12b679aa267dd2af7cfedc72bb71"
95 [patch.crates-io.cranelift-wasm]
96 git = "https://github.com/mozilla-spidermonkey/wasmtime"
97 rev = "a25399760e9f12b679aa267dd2af7cfedc72bb71"
99 # Patch autocfg to hide rustc output. Workaround for https://github.com/cuviper/autocfg/issues/30
100 [patch.crates-io.autocfg]
101 path = "third_party/rust/autocfg"
103 [patch.crates-io.autocfg01]
104 path = "third_party/rust/autocfg-0.1.6"
105 package = "autocfg"