mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
be8a563409
This introduces two new crates: - jsrust, for standalone builds. This crate is compiled into a static library libjsrust.a, which gets linked into the shared Spidermonkey library when it's built, or into the static Spidermonkey library otherwise. This is just a static library wrapping jsrust_shared below. - jsrust_shared, for Gecko embedding. It just references other Rust crates actively used in Spidermonkey. It is used to be embedded as part of a new Rust dependency in Gecko (in gkrust). --HG-- rename : js/src/wasm/cranelift/Cargo.toml => js/src/rust/Cargo.toml extra : rebase_source : 84e440e3f669b73776653182cb7b006cc7febb10 extra : histedit_source : 3a67575ff6871b7dc3558c10a0251b73cedb090c
66 lines
2.0 KiB
TOML
66 lines
2.0 KiB
TOML
[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",
|
|
"js/src/rust",
|
|
"js/src/wasm/cranelift",
|
|
"js/rust",
|
|
"js/src/frontend/binsource", # Code generator.
|
|
"testing/geckodriver",
|
|
"toolkit/crashreporter/rust",
|
|
"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.
|
|
"gfx/webrender",
|
|
"gfx/webrender_api",
|
|
"gfx/webrender_bindings",
|
|
"servo",
|
|
"third_party/rust",
|
|
|
|
# Excluded because this is a standalone tool for developers and not intended
|
|
# to be built as part of mozilla-central and is not shipped to users.
|
|
"gfx/wrench",
|
|
|
|
# Excluded because these crates have their own Cargo workspaces so they can't
|
|
# be included in the top-level one.
|
|
"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",
|
|
"media/mp4parse-rust/mp4parse",
|
|
"media/mp4parse-rust/mp4parse_capi",
|
|
"media/mp4parse-rust/mp4parse_fallible",
|
|
]
|
|
|
|
# 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.
|
|
[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" }
|
|
serde_derive = { git = "https://github.com/servo/serde", branch = "deserialize_from_enums8" }
|