Cargo.toml (645B)
1 [package] 2 edition = "2015" 3 name = "jsrust" 4 version = "0.1.0" 5 authors = ["The Spidermonkey developers"] 6 license = "MPL-2.0" 7 8 [lib] 9 name = "jsrust" 10 crate-type = ["staticlib"] 11 path = "lib.rs" 12 13 [features] 14 moz_memory = ['mozglue-static/moz_memory'] 15 simd-accel = ['jsrust_shared/simd-accel'] 16 gluesmith = ['jsrust_shared/gluesmith'] 17 icu4x = ['jsrust_shared/icu4x'] 18 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 = "243.0.0"