1[package]
2name = "gkrust"
3version = "0.1.0"
4authors = ["nobody@mozilla.org"]
5license = "MPL-2.0"
6description = "Rust code for libxul"
7
8[features]
9cubeb-remoting = ["gkrust-shared/cubeb-remoting"]
10cubeb_pulse_rust = ["gkrust-shared/cubeb_pulse_rust"]
11cubeb_coreaudio_rust = ["gkrust-shared/cubeb_coreaudio_rust"]
12gecko_debug = ["gkrust-shared/gecko_debug"]
13gecko_refcount_logging = ["gkrust-shared/gecko_refcount_logging"]
14simd-accel = ["gkrust-shared/simd-accel"]
15moz_memory = ["mozglue-static/moz_memory"]
16moz_places = ["gkrust-shared/moz_places"]
17spidermonkey_rust = ["gkrust-shared/spidermonkey_rust"]
18cranelift_x86 = ["gkrust-shared/cranelift_x86"]
19cranelift_arm32 = ["gkrust-shared/cranelift_arm32"]
20cranelift_arm64 = ["gkrust-shared/cranelift_arm64"]
21cranelift_none = ["gkrust-shared/cranelift_none"]
22smoosh = ["gkrust-shared/smoosh"]
23gecko_profiler = ["gkrust-shared/gecko_profiler"]
24gecko_profiler_parse_elf = ["gkrust-shared/gecko_profiler_parse_elf"]
25bitsdownload = ["gkrust-shared/bitsdownload"]
26new_xulstore = ["gkrust-shared/new_xulstore"]
27libfuzzer = ["gkrust-shared/libfuzzer"]
28webrtc = ["gkrust-shared/webrtc"]
29glean_disable_upload = ["gkrust-shared/glean_disable_upload"]
30glean_with_gecko = ["gkrust-shared/glean_with_gecko"]
31with_dbus = ["gkrust-shared/with_dbus"]
32thread_sanitizer = ["gkrust-shared/thread_sanitizer"]
33oxidized_breakpad = ["gkrust-shared/oxidized_breakpad"]
34webmidi_midir_impl = ["gkrust-shared/webmidi_midir_impl"]
35
36[dependencies]
37gkrust-shared = { path = "shared" }
38mozilla-central-workspace-hack = { path = "../../../build/workspace-hack" }
39
40# Workarounds for https://github.com/rust-lang/rust/issues/58393
41mozglue-static = { path = "../../../mozglue/static/rust" }
42swgl = { path = "../../../gfx/wr/swgl" }
43lmdb-rkv-sys = "0.11"
44
45[dev-dependencies]
46stylo_tests = { path = "../../../servo/ports/geckolib/tests/" }
47
48[lib]
49path = "lib.rs"
50crate-type = ["staticlib"]
51test = false
52doctest = false
53bench = false
54doc = false
55plugin = false
56harness = false
57