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 = [
|
|
|
|
"js/src",
|
2018-09-25 16:56:56 +03:00
|
|
|
"js/src/rust",
|
|
|
|
"js/src/wasm/cranelift",
|
2018-03-02 01:33:35 +03:00
|
|
|
"js/rust",
|
2019-03-13 07:29:44 +03:00
|
|
|
"js/src/frontend/binast", # Code generator.
|
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/",
|
|
|
|
]
|
|
|
|
|
|
|
|
# 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 = [
|
|
|
|
# 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.
|
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.
|
|
|
|
"dom/webauthn/u2f-hid-rs",
|
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",
|
|
|
|
"media/mp4parse-rust/mp4parse_fallible",
|
2019-02-11 21:03:12 +03:00
|
|
|
"xpcom/rust/gkrust_utils",
|
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"
|
|
|
|
codegen-units = 1
|
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
libudev-sys = { path = "dom/webauthn/libudev-sys" }
|
2019-03-23 17:17:35 +03:00
|
|
|
packed_simd = { git = "https://github.com/hsivonen/packed_simd", branch = "rust_1_32" }
|
2019-04-23 18:37:34 +03:00
|
|
|
|
|
|
|
[patch.crates-io.cranelift-codegen]
|
|
|
|
git = "https://github.com/CraneStation/Cranelift"
|
2019-10-22 10:09:34 +03:00
|
|
|
rev = "da179e4fd83d49b7ad6c9f286b1ea04d4f64907e"
|
2019-04-23 18:37:34 +03:00
|
|
|
|
|
|
|
[patch.crates-io.cranelift-wasm]
|
|
|
|
git = "https://github.com/CraneStation/Cranelift"
|
2019-10-22 10:09:34 +03:00
|
|
|
rev = "da179e4fd83d49b7ad6c9f286b1ea04d4f64907e"
|