mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
This will ultimately make it simpler to update crate dependencies and reduce duplicate when specifying requirements. Generally, this change does not touch dependencies that are only used by a single crate. We could consider moving them to workspace dependencies in the future.
15 lines
257 B
TOML
15 lines
257 B
TOML
[package]
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
name = "dom_struct"
|
|
edition = "2018"
|
|
publish = false
|
|
version = "0.0.1"
|
|
|
|
[dependencies]
|
|
quote = { workspace = true }
|
|
syn = { workspace = true }
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
proc-macro = true
|