asonix

Results 136 comments of asonix

There are some fixes around video going into the 0.4 branch that make this work better. 0.3 had issues identifying uploaded mp4 files, meaning really the only real use was...

Rather than returning an `impl Stream` you could try returning a `Box` or a `Pin` and suffer the allocation until it's possible to return `impl Foo` in traits

Welp, I have support for Rocket and Hyper servers now (also untested)

Rocket support is now tested, an example file lives here: https://github.com/asonix/http-signatures/blob/master/examples/rocket.rs

Just popping into this thread to mention that I'm like 100% down to help work on event stuff. I've done events before in Rust for a [telegram bot](https://github.com/asonix/telegram-event-bot/)

Yeah, UTC + Timezone is both the easiest (`chrono::DateTime` can't be used with Diesel, but `chrono::DateTime` can) and also the way I did it for my event bot.

I assume ARM means Linux on ARM?

if your template wraps itself in the base template, it should get bulma and forkawesome "for free"

you do still need to run `npm run build`, but we might be able to automate that in the build process

@davidhorac3 I'd be very interested in seeing a rust graphql endpoint. If you're sitting it on top of diesel, it might be difficult to get the types right. Let me...