Timon
Timon
Alright, I suspect that this is not a leak, but instead, this is the 'max recent' frames in `FrameView` that are being stored. By default, it stores 18000 records. But...
Running the server with a limited frame view recent frames i get: ``` [21sec]: track_size_threshold: 128, untracked: { count: 49, size: 1980 }, stochastically_tracked: { count: 111, size: 20726 },...
No, unfortunately not. I wanted to do something like that. I have some examples in example folder which could help you to get around. I've got some example which allows...
Hi there, Openssl can be a pain, from which line is the unwrap error?
This is your server address: `let server_addr = SocketAddr::new(IpAddr::V4(Ipv4Addr::new(192, 168, 1, 40)), 2100);`, however, I don't see any server code. Is this some other application? If there are no handshake...
If we implement `futures::Stream` for some stream, then the user is able to use either async-std or tokio. We do not have to support the runtime right?
Above comment has become: ```rust let diff = Config::new() .with_field_path_mode(FieldPathMode::Index) .serializable_diff(&old, &new); ```
That is weird, I have no clue why that happens. Over here https://github.com/crossterm-rs/terminal/blob/master/src/backend/crossterm/implementation.rs#L121 I have the drop function. Here it disables raw modes and goes back to the default screen....
I can give it a shot in some hours
Hi there, correct, sorry I totally mist this issue. It's correct that raw modes, alternate screen, and mouse capture is disabled at the drop https://github.com/crossterm-rs/terminal/blob/master/src/backend/crossterm/implementation.rs#L122 I chose this behavior because...