David Estes
David Estes
## Expected Behavior The following compiles successfully ```rust #[derive(Default, MergedSubscription)] pub struct Subscription(SubscriptionA, SubscriptionB); ``` ## Actual Behavior Generated code is missing the generics ```rust impl async_graphql::SubscriptionType for Subscription ```...
- Add 2020-03-02 and 2020-08-27 API versions to the enum - Set API header 2020-03-02 on the client. This is a breaking change but 0.13 is supposed to target 2020-03-02...
1. CreateSetupIntent "usage" added 1. add transfer_data to payment_intent update (used in stripe connect) rebase/consolidation of #192
## Description As I was reading the docs, I corrected some out of date information, invalid links and made minor grammar edits. ## How Has This Been Tested? I previewed...
Addresses #107. Re-export `libp2p_identity::PeerId` as it's used in a couple public interfaces. Patch version update to release, but requires a major version to revert.
While updating a project with dependencies on `multiaddr` and `multihash`, I noticed that `libp2p_identity::PeerId` isn't re-exported but is in two public interfaces: [MultiAddr::with_p2p](https://github.com/multiformats/rust-multiaddr/blob/38d3a5727164f2c2e60385c9fa2903f259c48758/src/lib.rs#L136) and [Protocol::P2p](https://github.com/multiformats/rust-multiaddr/blob/38d3a5727164f2c2e60385c9fa2903f259c48758/src/protocol.rs#L102). Any objections to a re-export...
All `Store` tests run with postgres and sqlite. Postgres tests no-op unless `PG_TESTS=1`, so that `cargo test` still passes even if you haven't set up a docker postgres image. In...
Added a middleware to capture all http requests status code, path and method in prometheus. In order to avoid blowing up prom with millions of labels, we rewrite a few...
## Description We [changed](https://github.com/ceramicnetwork/rust-ceramic/pull/411) the default RPC port ceramic one uses to 5101. This defaults to that port if not included. See the [ticket in linear](https://linear.app/3boxlabs/issue/AES-193/stretch-change-default-port-for-c1). This also removes the...
Implements event validation using did:key/JWS. This verifies the envelope and makes sure the cacao grants access to the key that signed the payload. This builds on #495 (current target) and...