diff options
author | Martin Robinson <mrobinson@igalia.com> | 2024-06-18 11:22:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-18 09:22:08 +0000 |
commit | 4a7f3bac7cadff129d15e3b0a6471a7ed3c4aaa4 (patch) | |
tree | ac47671f7487383aa11f9a3f2e531e9ee34e50a6 /components/dom_struct | |
parent | 42b09d483fbcc79345844d34b88b3ff4ae7a9735 (diff) | |
download | servo-4a7f3bac7cadff129d15e3b0a6471a7ed3c4aaa4.tar.gz servo-4a7f3bac7cadff129d15e3b0a6471a7ed3c4aaa4.zip |
Use workspace definitions for all crates and update to the 2021 edition (#32544)
Diffstat (limited to 'components/dom_struct')
-rw-r--r-- | components/dom_struct/Cargo.toml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/dom_struct/Cargo.toml b/components/dom_struct/Cargo.toml index 38ba2d74d05..1babcae0f45 100644 --- a/components/dom_struct/Cargo.toml +++ b/components/dom_struct/Cargo.toml @@ -1,10 +1,10 @@ [package] -authors = ["The Servo Project Developers"] -license = "MPL-2.0" name = "dom_struct" -edition = "2018" -publish = false -version = "0.0.1" +edition.workspace = true +version.workspace = true +authors.workspace = true +license.workspace = true +publish.workspace = true [dependencies] quote = { workspace = true } |