dots-viewer: cargo: Mark as not being part of a workspace

Otherwise if GStreamer is checked out inside a directory that
has a `Cargo.toml` file, building fails with:

```
error: current package believes it's in a workspace when it's not:
current rust-project/gstreamer/subprojects/gst-devtools/dots-viewer/Cargo.toml
workspace rust-project/Cargo.toml

This may be fixable by adding `gstreamer/subprojects/gst-devtools/dots-viewer`
to the `workspace.members` array of the manifest located at: rust-project/Cargo.toml

Alternatively, to keep it out of the workspace, add the package to the `workspace.exclude`
array, or add an empty `[workspace]` table to the package's manifest.
```

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8562>
This commit is contained in:
Thibault Saunier 2025-02-26 07:12:02 -03:00 committed by GStreamer Marge Bot
parent 71d8618daf
commit 4c051f25c8

View file

@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"
default-run = "gst-dots-viewer"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
[dependencies]
actix = "0.13"