mirror of
https://github.com/servo/servo.git
synced 2025-08-16 02:45:36 +01:00
script: Move code generation and webidl files to new script_bindings crate. (#35157)
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
This commit is contained in:
parent
a88b59534f
commit
af8d7c2de7
469 changed files with 187 additions and 137 deletions
28
components/script_bindings/Cargo.toml
Normal file
28
components/script_bindings/Cargo.toml
Normal file
|
@ -0,0 +1,28 @@
|
|||
[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]
|
||||
style = { workspace = true }
|
||||
|
||||
[features]
|
||||
webgpu = []
|
||||
webxr = []
|
Loading…
Add table
Add a link
Reference in a new issue