tte18
tte18
QUIC is a standard now https://datatracker.ietf.org/doc/html/rfc9000
@billyb2 can you open pull request, please? Or a draft pull request, if it's not done yet. To me, it's better to use `struct` instead of tuple in `metainfo.rs:84`
@billyb2 thank you) Added comment about what I talked about. @mandreyel can you share, what do you think about it?
cannot return value referencing temporary value returns a value referencing data owned by the current function
v0.6.1 sqlite ```sql SELECT name, COUNT(tbl2.id) AS count FROM tbl1 INNER JOIN tbl2 ON tbl1.id = tbl2.tbl1_id GROUP BY id ``` `unsupported type NULL of column #2 ("count")`
Dublicate https://github.com/NekoX-Dev/NekoX/issues/449
@tibbi I am using latest F-droid version (6.17.0). Sync is done by Outlook app
Outlook also uses HTML in event description. I think it would be nice render those HTML descriptions, since it's fairly common for corporate calendars to have them.
@robjtede sure. ```rust pub fn configure_routes(config: &mut ServiceConfig) { config.service( scope("resource-name") .service(resource_name::index) .service(resource_name::nested_route) ); } ``` ```rust mod resource_name { #[get("/{id}/")] pub async fn index(id: Path) -> Result {} #[get("/nested-route/")]...
The only blocker for now is the empty array [de]serialization. Since current implementation does not require Serialize/Deserialize traits to be implemented for empty array.