Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt to https://github.com/coq/coq/pull/19530 #1992

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/Bedrock/End2End/RupicolaCrypto/Broadcast.v
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ From Coq Require Import Utf8.
Require Import Rupicola.Lib.Api.
Require Import Rupicola.Lib.Loops.

From Coq Require Init.Byte String. Import Init.Byte(byte(..)) String.
From Coq Require Init.Byte String.
From Coq Require Import Init.Byte(byte(..)).
Import String.
Require Import coqutil.Datatypes.List. Import Lists.List List.ListNotations.
From Coq Require Import BinInt. Import Zdiv. Local Open Scope Z_scope.
Require Import coqutil.Byte coqutil.Word.LittleEndianList.
Expand Down
4 changes: 3 additions & 1 deletion src/Bedrock/End2End/RupicolaCrypto/Spec.v
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
From Coq Require Init.Byte String. Export Init.Byte(byte(..)) String.
From Coq Require Init.Byte String.
From Coq Require Export Init.Byte(byte(..)).
Export String.
Require Export coqutil.Datatypes.List. Export Lists.List List.ListNotations.
From Coq Require Export BinInt. Export Zdiv. Local Open Scope Z_scope.
Require Export coqutil.Byte coqutil.Word.LittleEndianList.
Expand Down
Loading