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/src/frontend/smoosh",
|
2018-09-25 16:56:56 +03:00
|
|
|
"js/src/rust",
|
2020-03-28 23:06:41 +03:00
|
|
|
"netwerk/test/http3server",
|
2021-12-18 04:30:24 +03:00
|
|
|
"security/manager/ssl/ipcclientcerts",
|
2019-09-18 20:27:50 +03:00
|
|
|
"security/manager/ssl/osclientcerts",
|
2018-03-02 01:33:35 +03:00
|
|
|
"testing/geckodriver",
|
2022-08-03 21:59:35 +03:00
|
|
|
"toolkit/components/uniffi-bindgen-gecko-js",
|
2021-01-14 14:01:59 +03:00
|
|
|
"toolkit/crashreporter/rust_minidump_writer_linux",
|
2021-04-07 10:55:23 +03:00
|
|
|
"toolkit/crashreporter/mozwer-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.
|
2018-11-23 00:47:48 +03:00
|
|
|
"gfx/wr",
|
2018-03-02 01:33:35 +03:00
|
|
|
|
|
|
|
# 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",
|
2022-06-08 02:09:52 +03:00
|
|
|
"dom/base/rust",
|
2022-02-18 16:57:30 +03:00
|
|
|
"dom/origin-trials/ffi",
|
2018-03-02 01:33:35 +03:00
|
|
|
]
|
|
|
|
|
2021-09-02 00:11:33 +03:00
|
|
|
# Use the new dependency resolver to reduce some of the platform-specific dependencies.
|
2021-09-03 19:52:08 +03:00
|
|
|
# This is required for 'third_party/rust/wgpu-hal'
|
2021-09-02 00:11:33 +03:00
|
|
|
resolver = "2"
|
|
|
|
|
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
|
|
|
|
|
2021-03-16 17:28:07 +03:00
|
|
|
# optimizing glsl more makes a big difference in swgl build times
|
|
|
|
[profile.dev.package.glsl]
|
|
|
|
opt-level = 2
|
|
|
|
|
|
|
|
[profile.release.package.glsl]
|
|
|
|
opt-level = 2
|
|
|
|
|
2018-03-02 01:33:35 +03:00
|
|
|
[patch.crates-io]
|
2021-12-17 04:16:06 +03:00
|
|
|
# The build system doesn't want those to be used, but they are pulled anyways (because
|
|
|
|
# dependencies can't be disabled based on features), but remain unused. We ensure they
|
|
|
|
# stay unused by overriding them with crates that contain enough to build the current
|
|
|
|
# code and will fail the build in unwanted cases.
|
|
|
|
cmake = { path = "build/rust/cmake" }
|
|
|
|
vcpkg = { path = "build/rust/vcpkg" }
|
|
|
|
|
2022-01-26 00:29:50 +03:00
|
|
|
# Helper crate for integration in the gecko build system.
|
|
|
|
mozbuild = { path = "build/rust/mozbuild" }
|
|
|
|
|
2022-05-31 00:37:32 +03:00
|
|
|
# Patch cfg-if 0.1 to 1.0
|
|
|
|
cfg-if = { path = "build/rust/cfg-if" }
|
|
|
|
|
2022-05-31 00:37:33 +03:00
|
|
|
# Patch redox_users to an empty crate
|
|
|
|
redox_users = { path = "build/rust/redox_users" }
|
|
|
|
|
2022-05-31 00:37:35 +03:00
|
|
|
# Patch memmap2 0.2 to 0.3
|
|
|
|
memmap2 = { path = "build/rust/memmap2" }
|
|
|
|
|
2022-06-01 01:05:01 +03:00
|
|
|
# Patch getrandom 0.7 to 0.8
|
|
|
|
rand = { path = "build/rust/rand" }
|
|
|
|
|
2022-06-02 01:05:53 +03:00
|
|
|
# Patch tokio-util 0.6 to 0.7
|
|
|
|
tokio-util = { path = "build/rust/tokio-util" }
|
|
|
|
|
2022-06-02 04:06:13 +03:00
|
|
|
# Patch env_logger 0.8 to 0.9
|
|
|
|
env_logger = { path = "build/rust/env_logger" }
|
|
|
|
|
2022-06-09 01:41:53 +03:00
|
|
|
# Patch parking_lot 0.12 down to 0.11, which is compatible for most crates that use it, to avoid
|
|
|
|
# dependencies on windows-sys.
|
|
|
|
parking_lot = { path = "build/rust/parking_lot" }
|
|
|
|
|
2022-06-14 23:32:28 +03:00
|
|
|
# Override tinyvec with smallvec
|
|
|
|
tinyvec = { path = "build/rust/tinyvec" }
|
|
|
|
|
2022-06-16 01:03:20 +03:00
|
|
|
# Patch wasi 0.10 to 0.11
|
|
|
|
wasi = { path = "build/rust/wasi" }
|
|
|
|
|
2022-09-13 15:57:58 +03:00
|
|
|
# Patch goblin 0.1 to 0.5
|
|
|
|
goblin = { path = "build/rust/goblin" }
|
|
|
|
|
2022-08-17 00:47:43 +03:00
|
|
|
# Patch hashbrown 0.11 to 0.12
|
|
|
|
hashbrown = { path = "build/rust/hashbrown" }
|
|
|
|
|
2021-12-16 00:40:22 +03:00
|
|
|
# Patch autocfg to hide rustc output. Workaround for https://github.com/cuviper/autocfg/issues/30
|
|
|
|
autocfg = { path = "third_party/rust/autocfg" }
|
|
|
|
|
2021-09-03 19:52:08 +03:00
|
|
|
# The following overrides point to dummy projects, as a temporary measure until this is resolved:
|
|
|
|
# https://github.com/rust-lang/cargo/issues/6179
|
2022-01-07 12:14:10 +03:00
|
|
|
js-sys = { path = "build/rust/dummy-web/js-sys" }
|
|
|
|
slotmap = { path = "build/rust/dummy-web/slotmap" }
|
|
|
|
wasm-bindgen = { path = "build/rust/dummy-web/wasm-bindgen" }
|
|
|
|
web-sys = { path = "build/rust/dummy-web/web-sys" }
|
2019-04-23 18:37:34 +03:00
|
|
|
|
2022-01-08 00:24:45 +03:00
|
|
|
# Overrides to allow easier use of common internal crates.
|
|
|
|
moz_asserts = { path = "mozglue/static/rust/moz_asserts" }
|
|
|
|
|
2022-10-14 00:46:07 +03:00
|
|
|
# Patch `rure` to disable building the cdylib and staticlib targets
|
|
|
|
# Cargo has no way to disable building targets your dependencies provide which
|
|
|
|
# you don't depend on, and linking the cdylib breaks during instrumentation
|
|
|
|
# builds.
|
|
|
|
# Workaround for https://github.com/rust-lang/cargo/issues/11232
|
|
|
|
rure = { path = "third_party/rust/rure" }
|
|
|
|
|
2021-12-16 00:40:22 +03:00
|
|
|
# Other overrides
|
2022-01-26 18:36:13 +03:00
|
|
|
async-task = { git = "https://github.com/smol-rs/async-task", rev="f6488e35beccb26eb6e85847b02aa78a42cd3d0e" }
|
2021-12-23 16:37:43 +03:00
|
|
|
chardetng = { git = "https://github.com/hsivonen/chardetng", rev="3484d3e3ebdc8931493aa5df4d7ee9360a90e76b" }
|
2021-12-16 00:40:22 +03:00
|
|
|
chardetng_c = { git = "https://github.com/hsivonen/chardetng_c", rev="ed8a4c6f900a90d4dbc1d64b856e61490a1c3570" }
|
2022-01-07 12:14:10 +03:00
|
|
|
coremidi = { git = "https://github.com/chris-zen/coremidi.git", rev="fc68464b5445caf111e41f643a2e69ccce0b4f83" }
|
2022-04-22 07:59:07 +03:00
|
|
|
fog = { path = "toolkit/components/glean/api" }
|
2021-12-16 00:40:22 +03:00
|
|
|
libudev-sys = { path = "dom/webauthn/libudev-sys" }
|
2022-08-16 03:56:23 +03:00
|
|
|
packed_simd = { package = "packed_simd_2", git = "https://github.com/hsivonen/packed_simd", rev="412f9a0aa556611de021bde89dee8fefe6e0fbbd" }
|
2022-07-23 00:29:30 +03:00
|
|
|
midir = { git = "https://github.com/mozilla/midir.git", rev = "e1b4dcb767f9e69afe95a860374aaa9635d81e3d" }
|
2022-05-10 10:15:15 +03:00
|
|
|
minidump_writer_linux = { git = "https://github.com/rust-minidump/minidump-writer.git", rev = "75ada456c92a429704691a85e1cb42fef8cafc0d" }
|
2021-01-15 15:19:13 +03:00
|
|
|
|
2022-06-03 15:41:13 +03:00
|
|
|
# application-services overrides to make updating them all simpler.
|
2022-10-25 23:03:21 +03:00
|
|
|
interrupt-support = { git = "https://github.com/mozilla/application-services", rev = "b09ffe23ee60a066176e5d7f9f2c6cd95c528ceb" }
|
|
|
|
sql-support = { git = "https://github.com/mozilla/application-services", rev = "b09ffe23ee60a066176e5d7f9f2c6cd95c528ceb" }
|
|
|
|
sync15 = { git = "https://github.com/mozilla/application-services", rev = "b09ffe23ee60a066176e5d7f9f2c6cd95c528ceb" }
|
|
|
|
tabs = { git = "https://github.com/mozilla/application-services", rev = "b09ffe23ee60a066176e5d7f9f2c6cd95c528ceb" }
|
|
|
|
viaduct = { git = "https://github.com/mozilla/application-services", rev = "b09ffe23ee60a066176e5d7f9f2c6cd95c528ceb" }
|
|
|
|
webext-storage = { git = "https://github.com/mozilla/application-services", rev = "b09ffe23ee60a066176e5d7f9f2c6cd95c528ceb" }
|
2022-06-03 15:41:13 +03:00
|
|
|
|
2021-04-30 12:17:56 +03:00
|
|
|
# Patch mio 0.6 to use winapi 0.3 and miow 0.3, getting rid of winapi 0.2.
|
|
|
|
# There is not going to be new version of mio 0.6, mio now being >= 0.7.11.
|
|
|
|
[patch.crates-io.mio]
|
2021-12-02 08:39:49 +03:00
|
|
|
path = "third_party/rust/mio-0.6.23"
|
2022-06-23 23:31:56 +03:00
|
|
|
|
2022-08-03 21:59:36 +03:00
|
|
|
# These are used to test UniFFI functionality. We haven't figured out how we
|
|
|
|
# want to publish these yet, so they are only accessible via git. This works
|
|
|
|
# okay, but it means that their dependencies on UniFFI crates will normally
|
|
|
|
# also be the git versions. Patch them to use the published versions to avoid
|
|
|
|
# duplicate crates.
|
|
|
|
|
|
|
|
[patch."https://github.com/mozilla/uniffi-rs.git"]
|
2022-10-20 15:42:47 +03:00
|
|
|
uniffi = "=0.21.0"
|
|
|
|
uniffi_bindgen = "=0.21.0"
|
|
|
|
uniffi_build = "=0.21.0"
|
|
|
|
uniffi_macros = "=0.21.0"
|
2022-09-13 15:57:58 +03:00
|
|
|
weedle2 = "=4.0.0"
|