Bug 1647268 [wpt PR 24278] - Python 3: port xhr tests [part 6], a=testonly
[gecko.git] / Cargo.toml
blobe5ef5701cfc749126a4a1c5820ef5cbc53b1fcd7
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/",
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",
36   "media/audioipc",
37   "media/cubeb-rs",
39   # Excluded because they are used only as dependencies, not top-level targets,
40   # so we don't need to vendor their dev-dependencies.
41   "gfx/webrender_bindings",
42   "media/mp4parse-rust/mp4parse",
43   "media/mp4parse-rust/mp4parse_capi",
44   "xpcom/rust/gkrust_utils",
45   "tools/lint/test/files/clippy",
46   "tools/fuzzing/rust",
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 [patch.crates-io]
66 libudev-sys = { path = "dom/webauthn/libudev-sys" }
67 packed_simd = { git = "https://github.com/hsivonen/packed_simd", rev="3541e3818fdc7c2a24f87e3459151a4ce955a67a" }
68 rlbox_lucet_sandbox = { git = "https://github.com/PLSysSec/rlbox_lucet_sandbox/", rev="d510da5999a744c563b0acd18056069d1698273f" }
69 nix = { git = "https://github.com/shravanrn/nix/", branch = "r0.13.1", rev="4af6c367603869a30fddb5ffb0aba2b9477ba92e" }
70 spirv_cross = { git = "https://github.com/kvark/spirv_cross", branch = "wgpu3", rev = "20191ad2f370afd6d247edcb9ff9da32d3bedb9c" }
71 # failure's backtrace feature might break our builds, see bug 1608157.
72 failure = { git = "https://github.com/badboy/failure", rev = "64af847bc5fdcb6d2438bec8a6030812a80519a5" }
73 failure_derive = { git = "https://github.com/badboy/failure", rev = "64af847bc5fdcb6d2438bec8a6030812a80519a5" }
75 [patch.crates-io.cranelift-codegen]
76 git = "https://github.com/bytecodealliance/wasmtime"
77 rev = "238ae3bf2111847f60089656eb97fc9345295b1f"
79 [patch.crates-io.cranelift-wasm]
80 git = "https://github.com/bytecodealliance/wasmtime"
81 rev = "238ae3bf2111847f60089656eb97fc9345295b1f"