Nikita Pekin
Nikita Pekin
Currently, `AtomicLazyCell` is missing the `borrow_mut`, `borrow_with`, and `try_borrow_with` functions that `LazyCell` has. These should be added to ensure we provide a consistent API.
I have an element which can take either of the following forms: ```rust some text ``` It can also be missing entirely. What is the proper way to handle this...
bevy_rapier version: https://github.com/indiv0/bevy_rapier/tree/5d19dc991cc3f18d9012524d08ff30ade915a2ae bevy_webgl2 version: https://github.com/indiv0/bevy_webgl2/tree/a53c9ca296a46019d833da9be6f69f099ac63159 bevy version: https://github.com/bevyengine/bevy/tree/2e2423139e0cd8efda3aa0d474d3eb231dad566b Example source: https://github.com/indiv0/colonize/tree/75ee66f710a4b9444a4b2119f27422e6fdeb3723 Example compilation args: ``` cargo build --target wasm32-unknown-unknown --no-default-features --features wasm wasm-bindgen --out-dir target --target web target/wasm32-unknown-unknown/debug/colonize.wasm wasm-opt...
### Pull Request Description This PR adds a `/subscribe` page to the UI. This page allows a user to upgrade to a "Solo" or "Team" subscription of the service. Subscribing...
Currently, `clippy-service` only loads the contents of the specified repo as a zip. This causes issues for projects which have git submodules that they depend on (e.g. [rusoto](https://github.com/rusoto/rusoto)). Would it...
[This](https://github.com/uiri/SEGIMAP/blob/970f3fa212bdfc8727242208c72d4e06ccafb497/src/user/session.rs#L347) line will contain our last regex usage once #24 lands. We should compare the performance to a nom-based parser (if it fits in this use-case), and remove the regex...
Currently the parser module contains the code for all of our nom-based parsers. Because these parsers produce types which already exist in our codebase, it would make sense to move...
Currently MIME message parsing is done by reading the file to a `String` and performing `String`-based operations. This isn't really a viable approach as a MIME message is not guaranteed...
I think that it might be beneficial to remove the non-IMAP specific parts to their own libraries to reduce code clutter and complexity. Specifically, we should move the LMTP portion...
Per the discussion in #28, a lot of our logging statements use incorrect priorities for the output (mostly `warn!` everywhere). This is not a high-priority issue, but should be resolved...