Evan Cameron

Results 66 comments of Evan Cameron

Would that work similarly to how erased-serde works? something like: ``` trait ErasedSubscriber { fn erased(&self, sub: &mut dyn Subscriber) -> Result; } ``` My particular use case is a...

Got a ping on this from the last message, thought I would add some more context. There are obvious workarounds to this, but if you want to see how I...

Circling back on this, I think `boxed` does alleviate the original issue somewhat with dynamic configuration before: ``` pub fn init_tracing(args: &Args) { let filter_layer = EnvFilter::try_from_default_env() .or_else(|_| EnvFilter::try_new("info")) .unwrap();...

downgrading glibc can break lots of stuff, so be careful. My terminal emulator `kitty` for example refused to work with `2.35`

simpleCors doesn't work for me, on simple get requests it's fine, however when i POST or PUT to a resource, servant still does a 400 on the OPTIONS

I have a full test project you can see the issue https://github.com/leshow/elm-tut/tree/master/app try updating a player level

@sordina I'll take a look at it this later today, thank you

@sordina I was going to give this a shot but your middleware link is returning not found. Edit: sorry forgot to refresh the thread

@sordina This is the error I get when I try to replicate your example ``` No instance for (Servant.Foreign.Internal.HasForeignType Servant.Foreign.Internal.NoTypes Servant.API.ContentTypes.NoContent Integer) arising from a use of ‘provideOptions’ In the...

I wrote a library for a simple rotary encoder library, and after posting about it in the rust-embedded/awesome-rust thread, someone directed me to this trait, that I had no idea...