diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-14 14:56:29 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-14 14:56:29 +0200 |
commit | 6c9286857ef8b314962b67f4a16a66e8c35531bc (patch) | |
tree | 9ced4485ec38b39f82cba258c06321a21c40000a /crates/libmpv2 | |
parent | build(Cargo.toml): Add further lints (diff) | |
download | yt-6c9286857ef8b314962b67f4a16a66e8c35531bc.tar.gz yt-6c9286857ef8b314962b67f4a16a66e8c35531bc.zip |
refactor(treewide): Combine the separate crates in one workspace
Diffstat (limited to 'crates/libmpv2')
-rw-r--r-- | crates/libmpv2/Cargo.toml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/crates/libmpv2/Cargo.toml b/crates/libmpv2/Cargo.toml index d92a012..8d45872 100644 --- a/crates/libmpv2/Cargo.toml +++ b/crates/libmpv2/Cargo.toml @@ -8,9 +8,6 @@ # You should have received a copy of the License along with this program. # If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. -[workspace] -members = ["libmpv2-sys"] - [package] name = "libmpv2" version = "4.0.0" @@ -23,8 +20,8 @@ keywords = ["media", "playback", "mpv", "libmpv"] [dependencies] libmpv2-sys = { path = "libmpv2-sys", version = "4.0.0" } -log = "0.4.22" -thiserror = "1.0.63" +thiserror = "1.0.64" +log = { version = "0.4.22" } [dev-dependencies] crossbeam = "0.8" |