Bug 1519988 - Implement toggling on/off of a CSS declaration. r=rcaliman
[gecko.git] / Cargo.toml
blobd64cbc77b53ddeae3ae47f74bf34f512143e8a1c
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/src",
9   "js/src/rust",
10   "js/src/wasm/cranelift",
11   "js/rust",
12   "js/src/frontend/binsource", # Code generator.
13   "testing/geckodriver",
14   "toolkit/crashreporter/rust",
15   "toolkit/library/gtest/rust",
16   "toolkit/library/rust/",
19 # Excluded crates may be built as dependencies, but won't be considered members
20 # of the workspace and their dev-dependencies won't be included.
21 exclude = [
22   # Exclude third-party code vendored into mozilla-central.
23   "servo",
24   "third_party/rust",
26   # Excluded because these crates have their own Cargo workspaces so they can't
27   # be included in the top-level one.
28   "gfx/wr",
29   "media/audioipc",
30   "media/cubeb-rs",
32   # Excluded because they are used only as dependencies, not top-level targets,
33   # so we don't need to vendor their dev-dependencies.
34   "dom/webauthn/u2f-hid-rs",
35   "gfx/webrender_bindings",
36   "media/mp4parse-rust/mp4parse",
37   "media/mp4parse-rust/mp4parse_capi",
38   "media/mp4parse-rust/mp4parse_fallible",
41 # Explicitly specify what our profiles use.  The opt-level setting here is
42 # a total fiction; see the setup of MOZ_RUST_DEFAULT_FLAGS for what the
43 # opt-level setting will be as a result of various other configure flags.
44 [profile.dev]
45 opt-level = 1
46 rpath = false
47 lto = false
48 debug-assertions = true
49 panic = "abort"
51 [profile.release]
52 opt-level = 2
53 rpath = false
54 debug-assertions = false
55 panic = "abort"
56 codegen-units = 1
58 [patch.crates-io]
59 libudev-sys = { path = "dom/webauthn/libudev-sys" }
60 serde_derive = { git = "https://github.com/servo/serde", branch = "deserialize_from_enums9" }
61 winapi = { git = "https://github.com/froydnj/winapi-rs", branch = "aarch64" }