async-stripe icon indicating copy to clipboard operation
async-stripe copied to clipboard

Async (and blocking!) Rust bindings for the Stripe API

Results 148 async-stripe issues
Sort by recently updated
recently updated
newest added

Not sure why I can't use it as it seems to be defined in one file. Removing "checkout" or "billing" will break resources/generated/quote.rs. Cargo.toml async-stripe = { version = "^0.15",...

This PR adds a small command line interface for the codegen process. The main motivation for the change was to allow controlling the OpenAPI specification version used, so that `cargo...

This is an automated PR that tries to build the latest changes generated from the [Stripe OpenApi spec](https://github.com/stripe/openapi). Here are the missing exports: ``` [cargo-make] INFO - cargo make 0.35.15...

Currently, the serde errors will tell you _what_ went wrong, but not _where_. We could like to change this, by reintroducing `serde_path_to_error`. Previously, the path was printed when an serde...

enhancement

We have a few ways of determining 'overall health' of the project, only some of which are actually in use: - [x] `cargo make verify`: a simple shell script that...

good first issue
codegen

After upgrading from 0.14 to 0.15 and attempting to use the new paginator, it seems that the expand parameters with an anonymous lifetime (e.g. `params.expand = ...` where `...` is...

bug

Adds path to `JSONSerialize` error Fixes #205

I'm using the following line in my `Cargo.toml`: ```toml async-stripe = { version = "0.13", default-features = false, features = ["runtime-tokio-hyper-rustls", "billing", "webhook-events"] } ``` and this is the compile...

bug

So, the current system has a problem when a struct becomes deprecated. The code gen (correctly) will not build a file when it's been "deleted" in the openapi, but that...

I need to use async-stripe in a crate with both blocking and async, but currently 2018 edition uses resolver version 1, which doesn't allow this. I'm not sure if it...