Skip to content

Commit

Permalink
Fix reqwest pinning
Browse files Browse the repository at this point in the history
  • Loading branch information
ok300 committed Jan 27, 2024
1 parent 82e30c4 commit e42ea73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/sdk-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ rusqlite = { version = "0.29", features = [
"hooks",
] }
rusqlite_migration = "1.0"
reqwest = { version = "0.11.20", features = ["json"] }
# Pin the reqwest dependency until macOS linker issue is fixed: https://github.com/seanmonstar/reqwest/issues/2006
reqwest = { version = "<=0.11.20", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tonic = { version = "^0.8", features = [
Expand Down

0 comments on commit e42ea73

Please sign in to comment.