mirror of
https://github.com/servo/servo.git
synced 2025-08-18 11:55:39 +01:00
Move CustomTraceable to script_bindings. (#35988)
* script: Move CustomTraceable to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Move record binding support to script_bindings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Address clippy warnings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> --------- Signed-off-by: Josh Matthews <josh@joshmatthews.net>
This commit is contained in:
parent
d35da38a2f
commit
c8d8787959
15 changed files with 340 additions and 277 deletions
|
@ -22,8 +22,10 @@ serde_json = { workspace = true }
|
|||
|
||||
[dependencies]
|
||||
bitflags = { workspace = true }
|
||||
crossbeam-channel = { workspace = true }
|
||||
cssparser = { workspace = true }
|
||||
html5ever = { workspace = true }
|
||||
indexmap = { workspace = true }
|
||||
js = { workspace = true }
|
||||
jstraceable_derive = { path = "../jstraceable_derive" }
|
||||
libc = { workspace = true }
|
||||
|
@ -31,15 +33,21 @@ log = { workspace = true }
|
|||
malloc_size_of = { workspace = true }
|
||||
malloc_size_of_derive = { workspace = true }
|
||||
num-traits = { workspace = true }
|
||||
parking_lot = { workspace = true }
|
||||
regex = { workspace = true }
|
||||
servo_arc = { workspace = true }
|
||||
smallvec = { workspace = true }
|
||||
stylo_atoms = { workspace = true }
|
||||
servo_config = { path = "../config" }
|
||||
style = { workspace = true }
|
||||
tendril = { version = "0.4.1", features = ["encoding_rs"] }
|
||||
webxr-api = { workspace = true, optional = true }
|
||||
xml5ever = { workspace = true }
|
||||
|
||||
[features]
|
||||
bluetooth = []
|
||||
webgpu = []
|
||||
webxr = []
|
||||
webxr = ["webxr-api"]
|
||||
|
||||
[lints.rust]
|
||||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(crown)'] }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue