Skip to content

Commit

Permalink
Merge pull request #15 from meilisearch/upgrade-dependencies
Browse files Browse the repository at this point in the history
Upgrade dependencies
  • Loading branch information
irevoire authored Jan 8, 2025
2 parents 0cb3149 + f9d536d commit fcf589a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ version = "0.2.4"
readme = "README.md"

[dependencies]
async-trait = "0.1.80"
time = { version = "0.3.36", features = ["serde-well-known", "formatting", "parsing"] }
reqwest = { version = "0.12.4", features = ["json"], default-features = false }
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
thiserror = "1.0.60"
async-trait = "0.1.85"
time = { version = "0.3.37", features = ["serde-well-known", "formatting", "parsing"] }
reqwest = { version = "0.12.12", features = ["json"], default-features = false }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
thiserror = "2.0.9"

[dev-dependencies]
tokio = { version = "1", features = ["rt", "macros"], default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl Client for HttpClient {

let _ = self
.client
.post(&format!("{}{}", self.host, path))
.post(format!("{}{}", self.host, path))
.basic_auth(write_key, Some(""))
.json(&msg)
.send()
Expand Down

0 comments on commit fcf589a

Please sign in to comment.