From 2aa4a82499d4becd2284cdb482213d541b8804dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 16:29:10 +0200 Subject: Adding upstream version 86.0.1. Signed-off-by: Daniel Baumann --- js/rust/Cargo.toml | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 js/rust/Cargo.toml (limited to 'js/rust/Cargo.toml') diff --git a/js/rust/Cargo.toml b/js/rust/Cargo.toml new file mode 100644 index 0000000000..2b4c9f07a7 --- /dev/null +++ b/js/rust/Cargo.toml @@ -0,0 +1,54 @@ +[package] +name = "js" +version = "0.1.4" +authors = ["The Servo Project Developers"] +build = "build.rs" +license = "MPL-2.0" + +[build-dependencies] +env_logger = {version = "0.8", default-features = false} # disable `regex` to reduce code size +bindgen = {version = "0.56", default-features = false, features = ["runtime"]} # disable `logging` to reduce code size +cmake = "0.1" +glob = "0.3" + +[[test]] +name = "bigint" +required-features = ["bigint"] +[[test]] +name = "callback" +[[test]] +name = "enumerate" +[[test]] +name = "evaluate" +[[test]] +name = "panic" +[[test]] +name = "rooting" +[[test]] +name = "runtime" +[[test]] +name = "typedarray" +[[test]] +name = "stack_limit" +[[test]] +name = "value" +[[test]] +name = "vec_conversion" + +[lib] +doctest = false + +[features] +debugmozjs = ['mozjs_sys/debugmozjs'] +promises = ['mozjs_sys/promises'] +nonzero = [] +bigint = ['mozjs_sys/bigint'] + +[dependencies.mozjs_sys] +path = "../src" + +[dependencies] +lazy_static = "1.0" +libc = "0.2" +log = "0.4" +num-traits = "0.2" -- cgit v1.2.3