From 16f7a6f25f295ac18ce045331dbae9963d8b062e Mon Sep 17 00:00:00 2001 From: Adrian Seyboldt Date: Wed, 8 Oct 2025 19:27:20 +0200 Subject: [PATCH] chore: correctly specify dependencies in workspace --- Cargo.toml | 4 ++-- nuts-derive/Cargo.toml | 5 ++++- nuts-storable/Cargo.toml | 3 +++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4336fe7..ed7ebd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,8 +38,8 @@ arrow = { version = "56.2.0", optional = true } arrow-schema = { version = "56.2.0", features = [ "canonical_extension_types", ], optional = true } -nuts-derive = { path = "./nuts-derive" } -nuts-storable = { path = "./nuts-storable" } +nuts-derive = { path = "./nuts-derive", version = "0.1.0" } +nuts-storable = { path = "./nuts-storable", version = "0.1.0" } serde = { version = "1.0.219", features = ["derive"] } serde_json = "1.0" tokio = { version = "1.0", features = ["rt"], optional = true } diff --git a/nuts-derive/Cargo.toml b/nuts-derive/Cargo.toml index bdd7f3a..0c2555a 100644 --- a/nuts-derive/Cargo.toml +++ b/nuts-derive/Cargo.toml @@ -2,12 +2,15 @@ name = "nuts-derive" version = "0.1.0" edition = "2024" +license = "MIT" +description = "Derive macros for nuts-rs" +repository = "https://github.com/pymc-devs/nuts-rs" [dependencies] proc-macro2 = "1.0" quote = "1.0" syn = { version = "1.0", features = ["full"] } -nuts-storable = { path = "../nuts-storable" } +nuts-storable = { path = "../nuts-storable", version = "0.1.0" } [lib] proc-macro = true diff --git a/nuts-storable/Cargo.toml b/nuts-storable/Cargo.toml index 6ff3383..e1dada6 100644 --- a/nuts-storable/Cargo.toml +++ b/nuts-storable/Cargo.toml @@ -2,5 +2,8 @@ name = "nuts-storable" version = "0.1.0" edition = "2024" +license = "MIT" +description = "Traits for serializing and deserializing NUTS models and states in nuts-rs" +repository = "https://github.com/pymc-devs/nuts-rs" [lib]