Skip to content

Commit 4386cd9

Browse files
authored
Update nix deps (#4593)
1 parent d01068e commit 4386cd9

File tree

6 files changed

+21
-18
lines changed

6 files changed

+21
-18
lines changed

.markdownlint.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,8 @@ MD033:
2323
#
2424
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md034
2525
MD034: false
26+
27+
# Images should have alternate text (alt text)
28+
#
29+
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md#md045
30+
MD045: false

flake.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
includeSystemImages = false;
3636
}).androidsdk;
3737
rustToolchain =
38-
pkgs.rust-bin.nightly.latest.default.override {
38+
pkgs.rust-bin.nightly."2023-11-15".default.override {
3939
extensions = [
4040
"clippy"
4141
"llvm-tools-preview"

java/src/main/java/com/google/oak/verification/RekorLogEntry.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ static class Spec {
9696
* Based on
9797
* <https://github.com/sigstore/rekor/blob/2978cdc26fdf8f5bfede8459afd9735f0f231a2a/pkg/generated/models/rekord_v001_schema.go#L179.>
9898
*/
99-
static class Data { Hash hash; }
99+
static class Data {
100+
Hash hash;
101+
}
100102

101103
/**
102104
* Represents a hash digest.

oak_docker_linux_init/src/main.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
// limitations under the License.
1515
//
1616

17-
#![feature(file_create_new)]
18-
1917
use log::info;
2018
use std::{
2119
fs::File,

oak_echo_linux_init/src/main.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
// limitations under the License.
1515
//
1616

17-
#![feature(file_create_new)]
18-
1917
use log::{debug, info};
2018
use nix::sys::termios::{cfmakeraw, tcgetattr, tcsetattr, SetArg};
2119
use std::{

0 commit comments

Comments
 (0)