fixed readme rust sample, added readme to lib.rs docs for doctest, bumped version

This commit is contained in:
Scott Lessans 2025-08-05 11:18:34 -07:00
parent eeece1861c
commit b1b6c5fe9a
4 changed files with 15 additions and 10 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "openai-harmony"
version = "0.0.2-alpha.1"
version = "0.0.2"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/openai/harmony"
@ -42,7 +42,10 @@ reqwest = { version = "0.12.5", default-features = false, features = [
] }
futures = "0.3"
clap = { version = "4", features = ["derive"] }
pyo3 = { version = "0.25.0", optional = true, features = ["extension-module", "abi3-py38"] }
pyo3 = { version = "0.25.0", optional = true, features = [
"extension-module",
"abi3-py38",
] }
wasm-bindgen = { version = "0.2.100", optional = true, features = [
"serde-serialize",
] }