2018-03-02 01:33:35 +03:00
|
|
|
[workspace]
|
|
|
|
|
|
|
|
# These are the "root" crates, which we build and test as top-level targets.
|
|
|
|
# Their transitive dependencies and dev-dependencies are included automatically
|
|
|
|
# and do not need to be listed here. Their external dependencies are vendored
|
|
|
|
# into `third_party/rust` by `mach vendor rust`.
|
|
|
|
members = [
|
2020-02-28 17:17:33 +03:00
|
|
|
"js/rust",
|
2018-03-02 01:33:35 +03:00
|
|
|
"js/src",
|
2020-02-28 17:17:33 +03:00
|
|
|
"js/src/frontend/smoosh",
|
2018-09-25 16:56:56 +03:00
|
|
|
"js/src/rust",
|
|
|
|
"js/src/wasm/cranelift",
|
2020-03-28 23:06:41 +03:00
|
|
|
"netwerk/test/http3server",
|
2019-09-18 20:27:50 +03:00
|
|
|
"security/manager/ssl/osclientcerts",
|
2018-03-02 01:33:35 +03:00
|
|
|
"testing/geckodriver",
|
Bug 1474871 - Link dump_syms against rustc-demangle. r=ted
The new version of breakpad imported in bug 1309172 doesn't demangle
rust symbols at all, contrary to before, where it tried to C++ demangle
them, which worked for many, although far from all. It however has
rust-demangle support as long as it's linked against a copy of the
rust-demangle-capi crate from https://github.com/luser/rust-demangle-capi/
This imports the code from the rust-demangle-capi crate but because of
some build system complications it's not taken as-is:
- it uses rusty-cheddar, which is deprecated, to generate a C header.
- rusty-cheddar depends on syntex_syntax, which now fails to build.
- rust-demangle-capi has crate-type staticlib, which can't be used
as a dependency in a Cargo.toml. For that reason, we can't create
a fake crate that depends on it to have it vendored.
Overall, it's only a few lines of rust, and the C header can be written
manually, so this is what we do here. The created crate is named in a way
specific to dump_syms.
The build system doesn't know how to figure out what system libraries
are required to link rust static libraries, although the rust compiler
has /some/ support to get the information, so we handle that manually.
--HG--
extra : rebase_source : 9f5a9bfe2148d3040e11c7121a88e85a7f2d5c53
2018-07-12 04:23:12 +03:00
|
|
|
"toolkit/crashreporter/rust",
|
2018-03-02 01:33:35 +03:00
|
|
|
"toolkit/library/gtest/rust",
|
|
|
|
"toolkit/library/rust/",
|
2020-07-22 01:17:26 +03:00
|
|
|
"toolkit/mozapps/defaultagent/rust",
|
2018-03-02 01:33:35 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
# Excluded crates may be built as dependencies, but won't be considered members
|
|
|
|
# of the workspace and their dev-dependencies won't be included.
|
|
|
|
exclude = [
|
2020-02-28 00:40:50 +03:00
|
|
|
# Excluded because it's for a toolchain task
|
|
|
|
"build/liblowercase",
|
|
|
|
|
2018-03-02 01:33:35 +03:00
|
|
|
# Exclude third-party code vendored into mozilla-central.
|
|
|
|
"servo",
|
|
|
|
"third_party/rust",
|
|
|
|
|
|
|
|
# Excluded because these crates have their own Cargo workspaces so they can't
|
|
|
|
# be included in the top-level one.
|
2019-11-15 03:29:53 +03:00
|
|
|
"gfx/wgpu",
|
2018-11-23 00:47:48 +03:00
|
|
|
"gfx/wr",
|
2018-03-02 01:33:35 +03:00
|
|
|
"media/audioipc",
|
|
|
|
"media/cubeb-rs",
|
|
|
|
|
|
|
|
# Excluded because they are used only as dependencies, not top-level targets,
|
|
|
|
# so we don't need to vendor their dev-dependencies.
|
2018-11-23 00:47:48 +03:00
|
|
|
"gfx/webrender_bindings",
|
2018-03-02 01:33:35 +03:00
|
|
|
"media/mp4parse-rust/mp4parse",
|
|
|
|
"media/mp4parse-rust/mp4parse_capi",
|
2019-02-11 21:03:12 +03:00
|
|
|
"xpcom/rust/gkrust_utils",
|
2020-02-19 11:50:35 +03:00
|
|
|
"tools/lint/test/files/clippy",
|
2019-09-21 00:27:35 +03:00
|
|
|
"tools/fuzzing/rust",
|
2018-03-02 01:33:35 +03:00
|
|
|
]
|
|
|
|
|
2018-03-09 17:31:17 +03:00
|
|
|
# Explicitly specify what our profiles use. The opt-level setting here is
|
|
|
|
# a total fiction; see the setup of MOZ_RUST_DEFAULT_FLAGS for what the
|
|
|
|
# opt-level setting will be as a result of various other configure flags.
|
2018-03-02 01:33:35 +03:00
|
|
|
[profile.dev]
|
|
|
|
opt-level = 1
|
|
|
|
rpath = false
|
|
|
|
lto = false
|
|
|
|
debug-assertions = true
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 2
|
|
|
|
rpath = false
|
|
|
|
debug-assertions = false
|
|
|
|
panic = "abort"
|
|
|
|
|
2020-12-04 04:35:51 +03:00
|
|
|
# Optimize build dependencies, because bindgen and proc macros / style
|
|
|
|
# compilation take more to run than to build otherwise.
|
|
|
|
[profile.dev.build-override]
|
|
|
|
opt-level = 1
|
|
|
|
|
|
|
|
[profile.release.build-override]
|
|
|
|
opt-level = 1
|
|
|
|
|
2018-03-02 01:33:35 +03:00
|
|
|
[patch.crates-io]
|
2020-11-29 11:07:45 +03:00
|
|
|
chardetng = { git = "https://github.com/hsivonen/chardetng", rev="7d5e0608d3e012bdfea3bd199111e3546607dd31" }
|
2020-08-31 10:14:58 +03:00
|
|
|
libudev-sys = { path = "dom/webauthn/libudev-sys" }
|
2020-10-30 11:29:53 +03:00
|
|
|
packed_simd = { git = "https://github.com/hsivonen/packed_simd", rev="0917fe780032a6bbb23d71be545f9c1834128d75" }
|
2020-12-10 00:54:03 +03:00
|
|
|
rlbox_lucet_sandbox = { git = "https://github.com/PLSysSec/rlbox_lucet_sandbox/", rev="f3cace4fb8b53db0849c62af4fa62bade5a620f7" }
|
2020-12-26 21:16:05 +03:00
|
|
|
nix = { git = "https://github.com/shravanrn/nix/", rev="4af6c367603869a30fddb5ffb0aba2b9477ba92e" }
|
|
|
|
spirv_cross = { git = "https://github.com/kvark/spirv_cross", branch = "wgpu4" }
|
2020-01-10 17:00:39 +03:00
|
|
|
# failure's backtrace feature might break our builds, see bug 1608157.
|
|
|
|
failure = { git = "https://github.com/badboy/failure", rev = "64af847bc5fdcb6d2438bec8a6030812a80519a5" }
|
|
|
|
failure_derive = { git = "https://github.com/badboy/failure", rev = "64af847bc5fdcb6d2438bec8a6030812a80519a5" }
|
2019-04-23 18:37:34 +03:00
|
|
|
|
|
|
|
[patch.crates-io.cranelift-codegen]
|
2020-11-19 21:50:12 +03:00
|
|
|
git = "https://github.com/mozilla-spidermonkey/wasmtime"
|
2020-12-10 09:51:48 +03:00
|
|
|
rev = "3334d92350da40b90d2529c147db3ea44918b558"
|
2019-04-23 18:37:34 +03:00
|
|
|
|
|
|
|
[patch.crates-io.cranelift-wasm]
|
2020-11-19 21:50:12 +03:00
|
|
|
git = "https://github.com/mozilla-spidermonkey/wasmtime"
|
2020-12-10 09:51:48 +03:00
|
|
|
rev = "3334d92350da40b90d2529c147db3ea44918b558"
|