Andrey Snow
Andrey Snow
Maybe I'm just dumb, but is there a way to do something like: ``` enum Compression { Lz4, Gzip(u8), } Compression::Gzip(9).to_string() # returns gzip-9 Compression::from_str("gzip-2") # returns Compression::Gzip(2) ```
I did everything as in README. But when i try to load my app, i get this: NoMethodError at / undefined method `debug' for nil:NilClass file: barista.rb location: debug line:...
I was working on making a nix package for dotave and notcied that revision tagged as 0.4.2 has an outdated Cargo.lock file. This prevents building this package offline and in...
The RETURNING syntax has been supported by SQLite since version 3.35.0 (2021-03-12) and is modeled after PostgreSQL. ## PR Info - Closes #653 ## Adds Makes it possible to use...
## Summary I would like to use `returning` branch in update and insert when using sqlite. ## Motivation It's more efficient than looking up by primary id after update. ##...
### Community Note * Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request. Searching for pre-existing...
Per discussion in #239 adding support for `from_serde` and `into_serde` to `gloo-utils`. I couldn't replicate functionality 1:1 because `wasm-bindgen` uses private API methods (`__wbindgen_json_serialize` and `__wbindgen_json_parse`), so I've reimplemented it...
### Description This pull request consists of the following changes: Clone `notion_states` when applying a notion. This how it was in v0.2.0 and seems like it got lost in refactoring?...
If you have a notion created when another notion is applied (I know, weird to have in single threaded env)—you get the following panic: Stack Trace ``` panicked at 'already...