Skip to content

Commit

Permalink
fix: revert reqwest back to v0.11.27
Browse files Browse the repository at this point in the history
  • Loading branch information
michael1011 committed Apr 16, 2024
1 parent c60c0be commit a0cac40
Show file tree
Hide file tree
Showing 2 changed files with 91 additions and 63 deletions.
128 changes: 78 additions & 50 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,26 @@ codegen-units = 1
panic = "abort"

[dependencies]
tokio = { version = "1.36.0", features = ["full"] }
axum = "0.7.4"
diesel = { version = "2.1.4", features = ["sqlite", "r2d2", "chrono"] }
tokio = { version = "1.37.0", features = ["full"] }
axum = "0.7.5"
diesel = { version = "2.1.5", features = ["sqlite", "r2d2", "chrono"] }
diesel_migrations = "2.1.0"
dotenvy = "0.15.7"
env_logger = "0.11.2"
log = "0.4.20"
env_logger = "0.11.3"
log = "0.4.21"
zeromq = { version = "0.3.5", features = ["tokio", "tcp-transport"] }
reqwest = { version = "0.12.3", features = ["json"] }
serde_json = "1.0.113"
reqwest = { version = "0.11.27", features = ["json"] }
serde_json = "1.0.116"
base64 = "0.22.0"
serde = { version = "1.0.196", features = ["derive"] }
serde = { version = "1.0.198", features = ["derive"] }
elements = { git = "https://github.com/michael1011/rust-elements", branch = "master", features = ["serde"] }
tower-http = { version = "0.5.1", features = ["cors"] }
tower-http = { version = "0.5.2", features = ["cors"] }
hex = { version = "0.4.3", features = ["alloc", "serde", "std"] }
serde_with = "3.6.1"
crossbeam-channel = "0.5.11"
serde_with = "3.7.0"
crossbeam-channel = "0.5.12"
r2d2 = "0.8.10"
rayon = "1.8.1"
rayon = "1.10.0"
num_cpus = "1.16.0"

[build-dependencies]
built = { version = "0.7.1", features = ["git2"] }
built = { version = "0.7.2", features = ["git2"] }

0 comments on commit a0cac40

Please sign in to comment.