Pēteris Pakalns
Pēteris Pakalns
Fails with the following error: ``` error: Found argument 'build' which wasn't expected, or isn't valid in this context USAGE: cargo For more information try --help ``` The command that...
https://github.com/BonsaiDen/cursive_tree_view/blob/e37b9b3668ec6ce658b153769d585193ae99f83c/src/lib.rs#L401 When container is fully emptied by calling `remove_item(row)` subtraction overflow happens. This happens only in debug mode due to additional Rust checks!
ProxyService only supports one parallel contest when sending initial data to listed RWS. After that, it sends all submission changes (even from different contests). These changes are discarded by RWS...
It looks like somewhere these bindings are adding error to float output. When using native C++ onnxruntime API in the output for yolov3 onnx model I receive Using python and...
* There must be exactly one statement in input * Given statement must be an expression (assignment, augmented assignment, etc. are not allowed) Resolves #58 #65 #67
The following statement successfully executes. `simpleeval.simple_eval("a = 2")` And returns 2. I suggest that assignment operator is entirely disallowed as input to simple eval. Because "a == 2" can be...
Using `simple_eval` method expression like `True\nFalse` is evaluated to True, `False\nTrue` to False. It looks like only the first statement is taken from AST for evaluation. https://github.com/danthedeckie/simpleeval/blob/b47858d7153a05f64da16c4425c38f481e510d12/simpleeval.py#L328 I suggest that...
It would be useful too see simple setup of offscreen rendering that is updated in each frame and used as an texture in egui for sophisticated interfaces, use cases with...
Macro can not find enumflags2 crate if enumflags2 is reexported (pub use). A lot of projects use one main crate to organize all crates that all crates in workspace may...
bevy_log, bevy_math, bevy_asset and other crates and their type registrations aren't always needed if partial functionality, minimal functionality of bevy is used. As all crates by default are included, project...