nebocco
nebocco
We are planning to change the response format of RPS ranking API `/v3/rated_point_sum_ranking`. old format: ```js { user_id: string, point_sum: int } ``` new format: ```js { user_id: string, count:...
ref #91 this PR contains following two changes: - Improve floor_sum - relax the constraints of floor_sum
私は rustup でデフォルトの toolchain を `stable-x86_64-unknown-linux-gnu` としているのですが、AtCoder の Rust は 1.42.0 であるため、`~/.config/cargo-atcoder.toml` 内で `rust-toolchain` を生成するように指定しています。 ``` [project] # to create `rust-toolchain` file, uncomment this line. rustc_version = "1.42.0" ``` 先日...
When I executed the following code, a panic occurred. I believe it is related to issue #976; however, a different error message was displayed, saying `assembly segments must be eulierian`....
ref #1126 sqlx のアップデートによりメモリリークが解決したと判明したら 上記 issue が close できるかと思います。 ### 対応したこと - `sqlx` を 0.7 にアップグレードし、コードに必要な修正を加えました。大半は型を明示する必要が生じたことによるものです。 - ついでに他の crate も最新のものにアップグレードしました。 - `Dockerfile.dev` で使用される Rust のバージョンをリリース版と同じものに引き上げました。 ### 対応してないこと - `chrono.Utc.timestamp()` が...
Hi, I found the titled issue when I was running my code on WSL Ubuntu: ```rust use nannou::prelude::*; fn main() { nannou::app(model).update(update).run(); } struct Model(u32); fn model(app: &App) -> Model...