Skip to content

Commit 8668791

Browse files
authored
Merge pull request #464 from FStarLang/_taramana_dpe_cbor
DPE example: CBOR.Spec.Constants -> CBOR.Spec.Const
2 parents 35c600e + a9db73d commit 8668791

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

share/pulse/examples/dice/cbor/CBOR.Pulse.fst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
module CBOR.Pulse
1818
#lang-pulse
19-
include CBOR.Spec.Constants
19+
include CBOR.Spec.Const
2020
include CBOR.Pulse.Extern
2121
open Pulse.Lib.Pervasives
2222
open Pulse.Lib.Trade

share/pulse/examples/dice/cbor/CBOR.Spec.Constants.fst renamed to share/pulse/examples/dice/cbor/CBOR.Spec.Const.fst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
limitations under the License.
1515
*)
1616

17-
module CBOR.Spec.Constants
17+
module CBOR.Spec.Const
1818

1919
module U8 = FStar.UInt8
2020

share/pulse/examples/dice/cbor/CBOR.Spec.Type.fsti

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*)
1616

1717
module CBOR.Spec.Type
18-
include CBOR.Spec.Constants
18+
include CBOR.Spec.Const
1919

2020
module U8 = FStar.UInt8
2121
module U64 = FStar.UInt64

share/pulse/examples/dice/cbor/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ extract_all_ml: $(ALL_ML_FILES)
3434
extract_c: $(OUTPUT_DIR)/CBOR.h
3535

3636
$(OUTPUT_DIR)/CBOR.h: $(ALL_KRML_FILES)
37-
$(KRML) -bundle C -bundle CBOR.Spec.Constants+CBOR.Pulse.Type+CBOR.Pulse.Extern=[rename=CBOR] -no-prefix CBOR.Spec.Constants,CBOR.Pulse.Type,CBOR.Pulse.Extern -bundle CBOR.Pulse= -bundle CDDLExtractionTest.Assume+CDDLExtractionTest.Bytes+CDDLExtractionTest.BytesUnwrapped+CDDLExtractionTest.Choice=*[rename=CDDLExtractionTest] -skip-linking $^ -tmpdir $(OUTPUT_DIR)
37+
$(KRML) -bundle C -bundle CBOR.Spec.Const+CBOR.Pulse.Type+CBOR.Pulse.Extern=[rename=CBOR] -no-prefix CBOR.Spec.Const,CBOR.Pulse.Type,CBOR.Pulse.Extern -bundle CBOR.Pulse= -bundle CDDLExtractionTest.Assume+CDDLExtractionTest.Bytes+CDDLExtractionTest.BytesUnwrapped+CDDLExtractionTest.Choice=*[rename=CDDLExtractionTest] -skip-linking $^ -tmpdir $(OUTPUT_DIR)
3838

3939
.PHONY: extern
4040

0 commit comments

Comments
 (0)