Skip to content
Closed
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
147 changes: 67 additions & 80 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ edition = "2024"

[workspace.dependencies]
serde = { version = ">=1.0.79", features = ["derive"] } # we use `serde(other)` which was introduced in 1.0.79
smol_str = { version = "=0.3.2", features = ["serde"] }
smol_str = { version = "=0.3.4", features = ["serde"] }
miniserde = "0.1.34"
serde_json = "1.0.115"
serde_qs = "1.0.0-rc.4"
2 changes: 1 addition & 1 deletion async-stripe-client-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ bytes = "1.6.0"
miniserde.workspace = true
futures-util = "0.3.28"
uuid = { version = "1.6.1", optional = true, features = ["v4"] }
tracing = "0.1.40"
tracing = "0.1.44"
thiserror = "2.0.11"
2 changes: 1 addition & 1 deletion async-stripe-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ serde_path_to_error = "0.1.20"
wasm-bindgen = "0.2.106"

[dev-dependencies]
insta = { version = "1.41", features = ["json"] }
insta = { version = "1.45", features = ["json"] }
4 changes: 2 additions & 2 deletions async-stripe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ thiserror = "2.0.11"
miniserde.workspace = true
bytes = "1.6.0"
tokio = { version = "1.24.1", features = ["rt", "macros"] }
tracing = "0.1.40"
tracing = "0.1.44"

# async-std-surf deps
async-std = { version = "1.12.0", optional = true }
Expand Down Expand Up @@ -56,4 +56,4 @@ uuid = ["async-stripe-client-core/uuid"]
[dev-dependencies]
serde.workspace = true
serde_json.workspace = true
httpmock = { version = "0.7.0", default-features = false }
httpmock = { version = "0.8.2", default-features = false }
2 changes: 1 addition & 1 deletion examples/errors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ async-stripe-payment = { path = "../../generated/async-stripe-payment", features
async-stripe-checkout = { path = "../../generated/async-stripe-checkout", features = ["checkout_session"] }
async-stripe-connect = { path = "../../generated/async-stripe-connect", features = ["account", "account_link"] }
tracing-subscriber = "0.3.22"
tracing = "0.1.43"
tracing = "0.1.44"
2 changes: 1 addition & 1 deletion examples/webhook-axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish = false

[dependencies]
tokio = { version = "1.24.1", features = ["rt-multi-thread", "macros"] }
axum = { version = "0.8.4", features = ["macros"] }
axum = { version = "0.8.8", features = ["macros"] }
async-stripe-webhook = { path = "../../async-stripe-webhook", features = [
"async-stripe-checkout",
] }
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ miniserde.workspace = true
serde_qs.workspace = true
serde_json.workspace = true
chrono = "0.4.26"
httpmock = { version = "0.7.0", default-features = false }
httpmock = { version = "0.8.2", default-features = false }
wiremock = "0.6.5"
futures-util = { version = "0.3.21" }
bytes = "1.6.0"
Expand Down
Loading