Skip to content

Commit

Permalink
fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienDeepgram committed Jul 14, 2024
1 parent 7114c84 commit 49304cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ futures = "0.3"
http = "0.2"
pin-project = "1"
reqwest = { version = "0.11.22", default-features = false, features = ["json", "rustls-tls", "stream"] }
serde = { version = "1", features = ["derive"] }
serde = { version = "1.0.25", features = ["derive"] }
serde_json = "1"
thiserror = "1"
tokio = { version = "1.13.0", features = ["full"] }
Expand Down
6 changes: 3 additions & 3 deletions src/speak/rest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
//!
//! [api]: https://developers.deepgram.com/reference/text-to-speech-api

use options::{Options, SerializableOptions};
use reqwest::RequestBuilder;
use serde_json::json;
use std::fs::File;
use std::io::copy;
use std::path::Path;
use url::Url;
use serde_json::json;
use options::{Options, SerializableOptions};

use super::Speak;

pub mod options;


static DEEPGRAM_API_URL_SPEAK: &str = "v1/speak";

impl<'a> Speak<'a> {
Expand Down

0 comments on commit 49304cd

Please sign in to comment.