29
29
learing->learning
Hi, I wrote this crate: https://crates.io/crates/filetime_creation It extends the functionality of "filetime" to modify the file creation time on Windows. Initially my idea was to make changes directly on "filetime"...
https://github.com/juce-framework/JUCE JUCE is an audio development framework, and we're rewriting it in Rust: https://github.com/opensound-org/opensound
备注:有很多HTTP服务器后端的“优雅停机”过程都存在会使进程卡死的bug。 ---------------- This issue will list the associated issues or PRs for each buggy backend one by one. They may have been solved and released, or solved but not yet...
This problem of Viz is exactly the same as Axum: https://github.com/tokio-rs/axum/issues/2611 This is due to a bug in `hyper-util`: issue: https://github.com/hyperium/hyper/issues/3576 pr: https://github.com/hyperium/hyper-util/pull/101 Patching `hyper-util` in Cargo.toml like this also...
**Version** v0.3.7 **Platform** 64-bit Windows 10 **Description** When I use a Chromium based browser, the graceful shutdown hangs. The minimal reproducible code is as follows: ``` use std::net::Ipv4Addr; use tokio::{signal::ctrl_c,...
### 📋 Description It's good to have a badge showing the number of reverse dependencies of a crate in crates.io. ### 🔗 Data https://crates.io/api/v1/crates/:crate/reverse_dependencies Then in the `meta::total` field, you...
I tried `either`, but it didn't work as expected: ``` use either::Either; use serde::Deserialize; use serde_urlencoded::from_str; #[derive(Deserialize)] struct ParamEither { #[serde(with = "either::serde_untagged")] param: Either, } impl ParamEither { fn...
Close #824 ---------------- This is a simple fix of this bug, which is more suitable as a default behavior of `EmbeddedFilesEndpoint`. Its basic logic is: First: `let path = req.uri().path().trim_start_matches('/');`...
I have the following two files at the same level of Cargo.toml: ``` static/index.html static/test/index.html ``` Then I wrote the following code: ``` use poem::{endpoint::EmbeddedFilesEndpoint, listener::TcpListener, Route, Server}; use rust_embed::RustEmbed;...