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 }