From 273880316e79a0ffa3978e3bdf3708cdda1904d3 Mon Sep 17 00:00:00 2001 From: David Koloski Date: Mon, 27 Feb 2023 20:42:00 -0500 Subject: [PATCH] Add workspace dependency for bytecheck_derive --- Cargo.toml | 3 +++ bytecheck/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c4b096d..0c13d78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,3 +12,6 @@ edition = "2021" license = "MIT" documentation = "https://docs.rs/bytecheck" repository = "https://github.com/djkoloski/bytecheck" + +[workspace.dependencies] +bytecheck_derive = "0.7.0" diff --git a/bytecheck/Cargo.toml b/bytecheck/Cargo.toml index 794cb58..3fd4e12 100644 --- a/bytecheck/Cargo.toml +++ b/bytecheck/Cargo.toml @@ -14,7 +14,7 @@ repository.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bytecheck_derive = { path = "../bytecheck_derive", default-features = false } +bytecheck_derive = { workspace = true, path = "../bytecheck_derive", default-features = false } ptr_meta = { version = "0.1", default-features = false } simdutf8 = { version = "0.1", default-features = false, optional = true }