cyypherus

Results 6 issues of cyypherus

Possible fix for #422 Prevents this sequence of events: 1. Frame update calls layout system 2. Baseview sends mousemove & layout system sends a mousemove 3. Frame update processes baseview...

Branch: [baseview-update](https://github.com/vizia/vizia/tree/baseview-update) Repro: Add a label to the knob example ```rust fn main() { Application::new(|cx| { AppData { value: 0.2 }.build(cx); ExamplePage::new(cx, |cx| { VStack::new(cx, |cx| { Knob::new(cx, 0.5, AppData::value,...

### Check for existing issues - [X] Completed ### Describe the bug / provide steps to reproduce it `cargo add` crate dependency using the console Begin typing an object /...

defect
rust
language

### Summary This code causes clippy to hang & never complete linting. ```rust use std::mem::ManuallyDrop; use std::ops::Deref; use std::ops::DerefMut; trait Scopable: Sized { type SubType: Scopable; } struct Subtree(ManuallyDrop); impl...

C-bug

```rust let body = ChatBody { model: "gpt-3.5-turbo".to_string(), max_tokens: Some(15), temperature: Some(0_f32), top_p: Some(0.5_f32), n: None, stream: Some(true), // this argument stop: None, presence_penalty: None, frequency_penalty: None, logit_bias: None, user:...

### Is there an existing issue for this? - [X] I have searched the existing issues ### What version of `workers-rs` are you using? 0.5.0 ### What version of `wrangler`...