mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
* script: Move DOMClass to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move DOMJSClass and get_dom_class to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move Castable/DerivedFrom/IDLInterface to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> --------- Signed-off-by: Josh Matthews <josh@joshmatthews.net>
44 lines
1 KiB
TOML
44 lines
1 KiB
TOML
[package]
|
|
name = "script_bindings"
|
|
build = "build.rs"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
# https://github.com/rust-lang/cargo/issues/3544
|
|
links = "script_bindings_crate"
|
|
|
|
[lib]
|
|
name = "script_bindings"
|
|
path = "lib.rs"
|
|
|
|
[build-dependencies]
|
|
phf_codegen = "0.11"
|
|
phf_shared = "0.11"
|
|
serde_json = { workspace = true }
|
|
|
|
[dependencies]
|
|
bitflags = { workspace = true }
|
|
cssparser = { workspace = true }
|
|
html5ever = { workspace = true }
|
|
js = { workspace = true }
|
|
jstraceable_derive = { path = "../jstraceable_derive" }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
malloc_size_of_derive = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
regex = { workspace = true }
|
|
servo_atoms = { workspace = true }
|
|
servo_config = { path = "../config" }
|
|
style = { workspace = true }
|
|
|
|
[features]
|
|
webgpu = []
|
|
webxr = []
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crown)'] }
|