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 /ports/servoshell/Cargo.toml | |
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 'ports/servoshell/Cargo.toml')
-rw-r--r-- | ports/servoshell/Cargo.toml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/ports/servoshell/Cargo.toml b/ports/servoshell/Cargo.toml index 93a311dcd88..aa0ea6cf427 100644 --- a/ports/servoshell/Cargo.toml +++ b/ports/servoshell/Cargo.toml @@ -1,12 +1,11 @@ [package] - name = "servoshell" -version = "0.0.1" -authors = ["The Servo Project Developers"] -license = "MPL-2.0" -edition = "2021" build = "build.rs" -publish = false +version.workspace = true +authors.workspace = true +license.workspace = true +edition.workspace = true +publish.workspace = true [lib] name = "servoshell" |