Skip to content

Commit 6ffcffc

Browse files
committed
Bump version to 0.3.2
1 parent 000c8dd commit 6ffcffc

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rstructor"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
edition = "2024"
55
description = "Get structured, validated data out of LLMs as native Rust structs and enums. Derive a type and rstructor generates the JSON Schema, prompts the model, parses the reply, and retries on validation errors — across OpenAI, Anthropic Claude, Google Gemini, and xAI Grok. The Rust answer to Python's Pydantic + Instructor."
66
license = "MIT"
@@ -58,7 +58,7 @@ tracing-subscriber = { version = "0.3.23", features = [
5858
"env-filter",
5959
], optional = true }
6060
tracing-futures = { version = "0.2.5", optional = true }
61-
rstructor_derive = { version = "0.3.1", path = "./rstructor_derive", optional = true }
61+
rstructor_derive = { version = "0.3.2", path = "./rstructor_derive", optional = true }
6262
base64 = { version = "0.22.1", optional = true }
6363
futures-util = { version = "0.3.31", default-features = false, optional = true }
6464
async-stream = { version = "0.3.6", optional = true }

rstructor_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rstructor_derive"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
edition = "2024"
55
description = "Derive macros for rstructor: generate JSON Schema from Rust structs and enums to extract structured, validated outputs from LLMs (the Instructor pattern for Rust)."
66
license = "MIT"

0 commit comments

Comments
 (0)