diff --git a/flake.lock b/flake.lock index c63cd7c4..3ef4735c 100644 --- a/flake.lock +++ b/flake.lock @@ -5,11 +5,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1701680307, - "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=", + "lastModified": 1710146030, + "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=", "owner": "numtide", "repo": "flake-utils", - "rev": "4022d587cbbfd70fe950c1e2083a02621806a725", + "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a", "type": "github" }, "original": { @@ -20,11 +20,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1703961334, - "narHash": "sha256-M1mV/Cq+pgjk0rt6VxoyyD+O8cOUiai8t9Q6Yyq4noY=", + "lastModified": 1711163522, + "narHash": "sha256-YN/Ciidm+A0fmJPWlHBGvVkcarYWSC+s3NTPk/P+q3c=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "b0d36bd0a420ecee3bc916c91886caca87c894e9", + "rev": "44d0940ea560dee511026a53f0e2e2cde489b4d4", "type": "github" }, "original": { @@ -51,11 +51,11 @@ ] }, "locked": { - "lastModified": 1704075545, - "narHash": "sha256-L3zgOuVKhPjKsVLc3yTm2YJ6+BATyZBury7wnhyc8QU=", + "lastModified": 1711332768, + "narHash": "sha256-SFnlIwnrwJxEawLcrH7+zGb8spePcYyai5asMZnm0BM=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "a0df72e106322b67e9c6e591fe870380bd0da0d5", + "rev": "8a8e3ea9a9a4b2225cb5e33e07c3a337f820168c", "type": "github" }, "original": { diff --git a/price-server/src/server/mod.rs b/price-server/src/server/mod.rs index c7cd4397..64f94555 100644 --- a/price-server/src/server/mod.rs +++ b/price-server/src/server/mod.rs @@ -1,3 +1,4 @@ +#![allow(clippy::blocks_in_conditions)] mod config; mod convert; mod error; diff --git a/quotes-server/src/server/mod.rs b/quotes-server/src/server/mod.rs index e7dfe1d6..52d6a878 100644 --- a/quotes-server/src/server/mod.rs +++ b/quotes-server/src/server/mod.rs @@ -1,3 +1,4 @@ +#![allow(clippy::blocks_in_conditions)] mod config; mod convert; mod error; diff --git a/rust-toolchain.toml b/rust-toolchain.toml index a09aebb8..2016127a 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] -channel = "1.75.0" +channel = "stable" profile = "default"