Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

update all crate dependencies #313

Merged
merged 3 commits into from
Jan 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions async-openai/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,27 +27,27 @@ realtime = ["dep:tokio-tungstenite"]
[dependencies]
backoff = { version = "0.4.0", features = ["tokio"] }
base64 = "0.22.1"
futures = "0.3.30"
futures = "0.3.31"
rand = "0.8.5"
reqwest = { version = "0.12.4", features = [
reqwest = { version = "0.12.12", features = [
"json",
"stream",
"multipart",
], default-features = false }
reqwest-eventsource = "0.6.0"
serde = { version = "1.0.203", features = ["derive", "rc"] }
serde_json = "1.0.117"
thiserror = "1.0.61"
tokio = { version = "1.38.0", features = ["fs", "macros"] }
tokio-stream = "0.1.15"
tokio-util = { version = "0.7.11", features = ["codec", "io-util"] }
tracing = "0.1.40"
derive_builder = "0.20.0"
serde = { version = "1.0.217", features = ["derive", "rc"] }
serde_json = "1.0.135"
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["fs", "macros"] }
tokio-stream = "0.1.17"
tokio-util = { version = "0.7.13", features = ["codec", "io-util"] }
tracing = "0.1.41"
derive_builder = "0.20.2"
async-convert = "1.0.0"
secrecy = { version = "0.10.3", features = ["serde"] }
bytes = "1.6.0"
bytes = "1.9.0"
eventsource-stream = "0.2.3"
tokio-tungstenite = { version = "0.24.0", optional = true, default-features = false }
tokio-tungstenite = { version = "0.26.1", optional = true, default-features = false }

[dev-dependencies]
tokio-test = "0.4.4"
Expand Down
4 changes: 2 additions & 2 deletions async-openai/src/types/realtime/client_event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pub struct ConversationItemTruncateEvent {
/// The index of the content part to truncate.
pub content_index: u32,

/// Inclusive duration up to which audio is truncated, in milliseconds.
/// Inclusive duration up to which audio is truncated, in milliseconds.
pub audio_end_ms: u32,
}

Expand Down Expand Up @@ -141,7 +141,7 @@ impl From<&ClientEvent> for String {

impl From<ClientEvent> for Message {
fn from(value: ClientEvent) -> Self {
Message::Text(String::from(&value))
Message::Text(String::from(&value).into())
}
}

Expand Down
4 changes: 2 additions & 2 deletions examples/assistants-code-interpreter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ publish = false

[dependencies]
async-openai = { path = "../../async-openai" }
tokio = { version = "1.38.0", features = ["full"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"]}
tokio = { version = "1.43.0", features = ["full"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"]}
2 changes: 1 addition & 1 deletion examples/assistants-file-search/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ publish = false

[dependencies]
async-openai = { path = "../../async-openai" }
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.43.0", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/assistants-file-search/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
.files()
.create(CreateFileRequest {
file: "./input/lyft-10k.pdf".into(),
..Default::default()
purpose: FilePurpose::Assistants,
})
.await?;

Expand Down
8 changes: 4 additions & 4 deletions examples/assistants-func-call-stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
async-openai = { path = "../../async-openai" }
tokio = { version = "1.38.0", features = ["full"] }
serde_json = "1.0.117"
futures = "0.3.30"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tokio = { version = "1.43.0", features = ["full"] }
serde_json = "1.0.135"
futures = "0.3.31"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
4 changes: 2 additions & 2 deletions examples/assistants/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"]}
tokio = { version = "1.43.0", features = ["full"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"]}
2 changes: 1 addition & 1 deletion examples/audio-speech/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.43.0", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/audio-transcribe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.43.0", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/audio-translate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.43.0", features = ["full"] }
4 changes: 2 additions & 2 deletions examples/azure-openai-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
futures = "0.3.30"
tokio = { version = "1.43.0", features = ["full"] }
futures = "0.3.31"
4 changes: 2 additions & 2 deletions examples/chat-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["full"] }
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = ["full"] }
4 changes: 2 additions & 2 deletions examples/chat-stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
futures = "0.3.30"
tokio = { version = "1.43.0", features = ["full"] }
futures = "0.3.31"
4 changes: 2 additions & 2 deletions examples/chat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["full"] }
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/completions-stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ publish = false
[dependencies]
async-openai = {path = "../../async-openai"}
futures = "0.3.30"
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.43.0", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/completions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.43.0", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/create-image-b64-json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.43.0", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/create-image-edit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.43.0", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/create-image-variation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.43.0", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/create-image/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.43.0", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/embeddings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.43.0", features = ["full"] }
6 changes: 3 additions & 3 deletions examples/function-call-stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["full"] }
futures = "0.3.30"
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = ["full"] }
futures = "0.3.31"
6 changes: 3 additions & 3 deletions examples/function-call/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["full"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"]}
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = ["full"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"]}
4 changes: 2 additions & 2 deletions examples/in-memory-file/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
bytes = "1.6.0"
tokio = { version = "1.43.0", features = ["full"] }
bytes = "1.9.0"
2 changes: 1 addition & 1 deletion examples/models/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.43.0", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/moderations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ publish = false

[dependencies]
async-openai = { path = "../../async-openai" }
tokio = { version = "1.38.0", features = ["full"] }
tokio = { version = "1.43.0", features = ["full"] }
8 changes: 4 additions & 4 deletions examples/realtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ edition = "2021"
async-openai = { path = "../../async-openai", features = ["realtime"] }
futures-channel = "0.3.31"
futures-util = { version = "0.3.31", features = ["sink", "std"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
tokio = { version = "1.40.0", features = [
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = [
"io-std",
"io-util",
"macros",
"rt-multi-thread",
] }
tokio-tungstenite = { version = "0.24.0", features = ["connect", "native-tls"] }
tokio-tungstenite = { version = "0.26.1", features = ["connect", "native-tls"] }
4 changes: 2 additions & 2 deletions examples/structured-outputs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ publish = false

[dependencies]
async-openai = {path = "../../async-openai"}
serde_json = "1.0.127"
tokio = { version = "1.39.3", features = ["full"] }
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = ["full"] }
6 changes: 3 additions & 3 deletions examples/tool-call-stream/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ publish = false
[dependencies]
async-openai = {path = "../../async-openai"}
rand = "0.8.5"
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["full"] }
futures = "0.3.30"
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = ["full"] }
futures = "0.3.31"
6 changes: 3 additions & 3 deletions examples/tool-call/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ publish = false
[dependencies]
async-openai = {path = "../../async-openai"}
rand = "0.8.5"
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["full"] }
futures = "0.3.30"
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = ["full"] }
futures = "0.3.31"
4 changes: 2 additions & 2 deletions examples/vision-chat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"

[dependencies]
async-openai = { path = "../../async-openai" }
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["full"] }
serde_json = "1.0.135"
tokio = { version = "1.43.0", features = ["full"] }