Spencer Judge

Results 74 issues of Spencer Judge

Here's a simple repro: ```rust #[derive(Debug)] struct Foo {} #[derive(Debug)] struct Bar {} #[derive(Debug, derive_more::From, derive_more::Display)] pub enum ErrEnum { #[display("Blah")]] Unknown, #[display("Box1: {0:?}")] #[from(forward)] Box1(Box), #[display("Box2: {0:?}")] #[from(forward)] Box2(Box),...

Love the library, thanks for your work. Wanted to point out a small bug: I have a struct like: ```rust #[allow(clippy::too_many_arguments)] #[derive(Constructor, Clone)] pub struct SomeStruct { pub field1: String,...

Hi there! Liking this package a lot - but I've run into a bit of trouble. I'm not sure anchors are compatible with the way the hash URL currently works,...

## Feature Request ### Crates tonic ### Motivation I need to attach a deadline/timeout whose value varies based on which method I'm calling. Additionally, I implement some metrics like counting...

C-enhancement
A-tonic
E-medium

**What changed?** Ensure that versioning metadata is propagated to task queue sub-partitions. The root partition is the only one that ever reads/writes from the actual database. **Why?** Every TQ partition...

Per https://github.com/Sushisource/proposals/blob/83dce63ad681d8dccc9fb2f6996304942a7ca04e/versioning/worker-versions.md TQs which have any build id versioning info set using the API must dispatch tasks to versioned queues according to the proposal. We also need to decide on...

Hello - I've got some structs like: ```rust #[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] pub struct SubscriptionUpdate { pub result: SubscriptionResult, pub subscription: u64, } #[derive(Serialize, Deserialize, Debug, Clone, PartialEq)] #[serde(untagged)]...

docs

Hey there, loving the progress on the library. Started using the set_transform & related functions after the new update and that's certainly made my life easier. One (two?) question /...

enhancement
Type-CODE

Will happily contribute this if I find some time to do it in the near future. Wanted to open this item in any case. Thanks!