diff --git a/.gitignore b/.gitignore index 13f4ba5..f806edd 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,6 @@ Cargo.lock perf.data* .gdb_history +.zed +*.rs- +*.cu diff --git a/Cargo.toml b/Cargo.toml index ea99bfb..6148b3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ arrow-schema = { version = "57.0.0", features = [ "canonical_extension_types", ], optional = true } nuts-derive = { path = "./nuts-derive", version = "0.1.0" } -nuts-storable = { path = "./nuts-storable", version = "0.1.0" } +nuts-storable = { path = "./nuts-storable", version = "0.2.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 0c2555a..c944455 100644 --- a/nuts-derive/Cargo.toml +++ b/nuts-derive/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/pymc-devs/nuts-rs" proc-macro2 = "1.0" quote = "1.0" syn = { version = "1.0", features = ["full"] } -nuts-storable = { path = "../nuts-storable", version = "0.1.0" } +nuts-storable = { path = "../nuts-storable", version = "0.2.0" } [lib] proc-macro = true diff --git a/nuts-storable/Cargo.toml b/nuts-storable/Cargo.toml index e1dada6..35fe389 100644 --- a/nuts-storable/Cargo.toml +++ b/nuts-storable/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nuts-storable" -version = "0.1.0" +version = "0.2.0" edition = "2024" license = "MIT" description = "Traits for serializing and deserializing NUTS models and states in nuts-rs"