no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / js / src / rust / Cargo.toml
blob0ea4a5c96588eb9080c52f6529d1c9324419197b
1 [package]
2 name = "jsrust"
3 version = "0.1.0"
4 authors = ["The Spidermonkey developers"]
5 license = "MPL-2.0"
7 [lib]
8 name = "jsrust"
9 crate-type = ["staticlib"]
10 path = "lib.rs"
12 [features]
13 moz_memory = ['mozglue-static/moz_memory']
14 simd-accel = ['jsrust_shared/simd-accel']
15 smoosh = ['jsrust_shared/smoosh']
16 gluesmith = ['jsrust_shared/gluesmith']
17 icu4x = ['jsrust_shared/icu4x']
19 [dependencies]
20 mozilla-central-workspace-hack = { version = "0.1", features = ["jsrust"], optional = true }
21 jsrust_shared = { path = "./shared" }
22 # Workaround for https://github.com/rust-lang/rust/issues/58393
23 mozglue-static = { path = "../../../mozglue/static/rust" }
24 wast = "70.0.1"