Bug 1669129 - [devtools] Enable devtools.overflow.debugging.enabled. r=jdescottes
[gecko.git] / Cargo.toml
blobd0e451aef746e73b4884ffd833a6183d428ba20e
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/components/updateagent",
17   "toolkit/crashreporter/rust",
18   "toolkit/library/gtest/rust",
19   "toolkit/library/rust/",
20   "toolkit/mozapps/defaultagent/rust",
23 # Excluded crates may be built as dependencies, but won't be considered members
24 # of the workspace and their dev-dependencies won't be included.
25 exclude = [
26   # Excluded because it's for a toolchain task
27   "build/liblowercase",
29   # Exclude third-party code vendored into mozilla-central.
30   "servo",
31   "third_party/rust",
33   # Excluded because these crates have their own Cargo workspaces so they can't
34   # be included in the top-level one.
35   "gfx/wgpu",
36   "gfx/wr",
37   "media/audioipc",
38   "media/cubeb-rs",
40   # Excluded because they are used only as dependencies, not top-level targets,
41   # so we don't need to vendor their dev-dependencies.
42   "gfx/webrender_bindings",
43   "media/mp4parse-rust/mp4parse",
44   "media/mp4parse-rust/mp4parse_capi",
45   "xpcom/rust/gkrust_utils",
46   "tools/lint/test/files/clippy",
47   "tools/fuzzing/rust",
50 # Explicitly specify what our profiles use.  The opt-level setting here is
51 # a total fiction; see the setup of MOZ_RUST_DEFAULT_FLAGS for what the
52 # opt-level setting will be as a result of various other configure flags.
53 [profile.dev]
54 opt-level = 1
55 rpath = false
56 lto = false
57 debug-assertions = true
58 panic = "abort"
60 [profile.release]
61 opt-level = 2
62 rpath = false
63 debug-assertions = false
64 panic = "abort"
66 [patch.crates-io]
67 libudev-sys = { path = "dom/webauthn/libudev-sys" }
68 packed_simd = { git = "https://github.com/hsivonen/packed_simd", rev="3541e3818fdc7c2a24f87e3459151a4ce955a67a" }
69 rlbox_lucet_sandbox = { git = "https://github.com/PLSysSec/rlbox_lucet_sandbox/", rev="ed8bac8812e9f335d5fadd0f4ece96981aba88a3" }
70 nix = { git = "https://github.com/shravanrn/nix/", branch = "r0.13.1", rev="4af6c367603869a30fddb5ffb0aba2b9477ba92e" }
71 spirv_cross = { git = "https://github.com/kvark/spirv_cross", branch = "wgpu3", rev = "20191ad2f370afd6d247edcb9ff9da32d3bedb9c" }
72 # failure's backtrace feature might break our builds, see bug 1608157.
73 failure = { git = "https://github.com/badboy/failure", rev = "64af847bc5fdcb6d2438bec8a6030812a80519a5" }
74 failure_derive = { git = "https://github.com/badboy/failure", rev = "64af847bc5fdcb6d2438bec8a6030812a80519a5" }
76 [patch.crates-io.cranelift-codegen]
77 git = "https://github.com/bytecodealliance/wasmtime"
78 rev = "57fed697920cb888c6cb7e406d13518f7edd12ea"
80 [patch.crates-io.cranelift-wasm]
81 git = "https://github.com/bytecodealliance/wasmtime"
82 rev = "57fed697920cb888c6cb7e406d13518f7edd12ea"