Skip to content

Commit 45f2bd7

Browse files
committed
chore: correctly specify dependencies in workspace
1 parent d3ad343 commit 45f2bd7

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ arrow = { version = "56.2.0", optional = true }
3838
arrow-schema = { version = "56.2.0", features = [
3939
"canonical_extension_types",
4040
], optional = true }
41-
nuts-derive = { path = "./nuts-derive" }
42-
nuts-storable = { path = "./nuts-storable" }
41+
nuts-derive = { path = "./nuts-derive", version = "0.1.0" }
42+
nuts-storable = { path = "./nuts-storable", version = "0.1.0" }
4343
serde = { version = "1.0.219", features = ["derive"] }
4444
serde_json = "1.0"
4545
tokio = { version = "1.0", features = ["rt"], optional = true }

nuts-derive/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22
name = "nuts-derive"
33
version = "0.1.0"
44
edition = "2024"
5+
license = "MIT"
6+
description = "Derive macros for nuts-rs"
7+
repository = "https://github.com/pymc-devs/nuts-rs"
58

69
[dependencies]
710
proc-macro2 = "1.0"
811
quote = "1.0"
912
syn = { version = "1.0", features = ["full"] }
10-
nuts-storable = { path = "../nuts-storable" }
13+
nuts-storable = { path = "../nuts-storable", version = "0.1.0" }
1114

1215
[lib]
1316
proc-macro = true

nuts-storable/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
name = "nuts-storable"
33
version = "0.1.0"
44
edition = "2024"
5+
license = "MIT"
6+
description = "Traits for serializing and deserializing NUTS models and states in nuts-rs"
7+
repository = "https://github.com/pymc-devs/nuts-rs"
58

69
[lib]

0 commit comments

Comments
 (0)