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
165 changes: 75 additions & 90 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.5", features = ["serde"] }
miniserde = "0.1.34"
serde_json = "1.0.115"
serde_qs = "1.0.0-rc.4"
4 changes: 2 additions & 2 deletions async-stripe-client-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ serde.workspace = true
serde_qs.workspace = true
bytes = "1.6.0"
miniserde.workspace = true
futures-util = "0.3.28"
uuid = { version = "1.6.1", optional = true, features = ["v4"] }
futures-util = "0.3.32"
uuid = { version = "1.21.0", optional = true, features = ["v4"] }
tracing = "0.1.40"
thiserror = "2.0.11"
2 changes: 1 addition & 1 deletion async-stripe/Cargo.toml
Original file line number Diff line number Diff line change
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.3", default-features = false }
2 changes: 1 addition & 1 deletion examples/endpoints/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish = false


[dependencies]
futures-util = "0.3.28"
futures-util = "0.3.32"
tokio = { version = "1.24.1", features = ["rt-multi-thread", "macros"] }
async-stripe = { path = "../../async-stripe", features = ["uuid"] }
async-stripe-types = { path = "../../async-stripe-types" }
Expand Down
2 changes: 1 addition & 1 deletion examples/errors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish = false


[dependencies]
futures-util = "0.3.28"
futures-util = "0.3.32"
tokio = { version = "1.24.1", features = ["rt-multi-thread", "macros"] }
async-stripe = { path = "../../async-stripe", features = ["uuid"] }
async-stripe-types = { path = "../../async-stripe-types" }
Expand Down
2 changes: 1 addition & 1 deletion examples/pagination/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
futures-util = "0.3.28"
futures-util = "0.3.32"
tokio = { version = "1.24.1", features = ["rt-multi-thread", "macros"] }
async-stripe = { path = "../../async-stripe" }
async-stripe-core = { path = "../../generated/async-stripe-core", features = ["customer"] }
Loading
Loading