File tree Expand file tree Collapse file tree 4 files changed +15
-11
lines changed Expand file tree Collapse file tree 4 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -132,11 +132,11 @@ import Kore.Syntax.Definition
132
132
, getModuleNameForError
133
133
)
134
134
import qualified Kore.Verified as Verified
135
+ import Kore.VersionInfo
135
136
136
137
import qualified Paths_kore as MetaData
137
138
( version
138
139
)
139
- import VersionInfo
140
140
141
141
type Main = LoggerT IO
142
142
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ cabal-version: 2.2
4
4
--
5
5
-- see: https://github.com/sol/hpack
6
6
--
7
- -- hash: 3d55d4e48de30558077ae922d1e28eb952053eba723c498c6844dbb35e799899
7
+ -- hash: 03c98e7a7113ac321409caf3539c3987574f8cb7fa4049e7fb285d8c462de491
8
8
9
9
name : kore
10
10
version : 0.40.0.0
@@ -384,6 +384,7 @@ library
384
384
Kore.Variables.Fresh
385
385
Kore.Variables.Target
386
386
Kore.Verified
387
+ Kore.VersionInfo
387
388
Log
388
389
Log.Entry
389
390
Logic
@@ -477,7 +478,6 @@ executable kore-exec
477
478
main-is : Main.hs
478
479
other-modules :
479
480
GlobalMain
480
- VersionInfo
481
481
Paths_kore
482
482
hs-source-dirs :
483
483
app/exec
@@ -558,7 +558,6 @@ executable kore-format
558
558
main-is : Main.hs
559
559
other-modules :
560
560
GlobalMain
561
- VersionInfo
562
561
Paths_kore
563
562
hs-source-dirs :
564
563
app/format
@@ -639,7 +638,6 @@ executable kore-parser
639
638
main-is : Main.hs
640
639
other-modules :
641
640
GlobalMain
642
- VersionInfo
643
641
Paths_kore
644
642
hs-source-dirs :
645
643
app/parser
@@ -794,7 +792,6 @@ executable kore-repl
794
792
main-is : Main.hs
795
793
other-modules :
796
794
GlobalMain
797
- VersionInfo
798
795
Paths_kore
799
796
hs-source-dirs :
800
797
app/repl
Original file line number Diff line number Diff line change
1
+ {- |
2
+ Copyright : (c) Runtime Verification, 2021
3
+ License : NCSA
4
+
5
+ -}
6
+
1
7
{-# LANGUAGE DeriveLift #-}
2
8
{-# LANGUAGE NoDuplicateRecordFields #-}
3
9
{-# LANGUAGE Strict #-}
4
10
{-# LANGUAGE TemplateHaskell #-}
5
11
6
- module VersionInfo
12
+ module Kore. VersionInfo
7
13
( VersionInfo (.. )
8
14
, versionInfo
9
15
) where
Original file line number Diff line number Diff line change 443
443
"Kore/Variables/Fresh"
444
444
"Kore/Variables/Target"
445
445
"Kore/Verified"
446
+ "Kore/VersionInfo"
446
447
"Log"
447
448
"Log/Entry"
448
449
"Logic"
531
532
( hsPkgs . buildPackages . tasty-discover or ( pkgs . buildPackages . tasty-discover or ( errorHandler . buildToolDepError "tasty-discover" ) ) )
532
533
] ;
533
534
buildable = true ;
534
- modules = [ "GlobalMain" "VersionInfo" " Paths_kore" ] ;
535
+ modules = [ "GlobalMain" "Paths_kore" ] ;
535
536
hsSourceDirs = [ "app/exec" "app/share" ] ;
536
537
mainPath = ( [
537
538
"Main.hs"
603
604
( hsPkgs . buildPackages . tasty-discover or ( pkgs . buildPackages . tasty-discover or ( errorHandler . buildToolDepError "tasty-discover" ) ) )
604
605
] ;
605
606
buildable = true ;
606
- modules = [ "GlobalMain" "VersionInfo" " Paths_kore" ] ;
607
+ modules = [ "GlobalMain" "Paths_kore" ] ;
607
608
hsSourceDirs = [ "app/format" "app/share" ] ;
608
609
mainPath = ( [
609
610
"Main.hs"
675
676
( hsPkgs . buildPackages . tasty-discover or ( pkgs . buildPackages . tasty-discover or ( errorHandler . buildToolDepError "tasty-discover" ) ) )
676
677
] ;
677
678
buildable = true ;
678
- modules = [ "GlobalMain" "VersionInfo" " Paths_kore" ] ;
679
+ modules = [ "GlobalMain" "Paths_kore" ] ;
679
680
hsSourceDirs = [ "app/parser" "app/share" ] ;
680
681
mainPath = ( [
681
682
"Main.hs"
817
818
( hsPkgs . buildPackages . tasty-discover or ( pkgs . buildPackages . tasty-discover or ( errorHandler . buildToolDepError "tasty-discover" ) ) )
818
819
] ;
819
820
buildable = true ;
820
- modules = [ "GlobalMain" "VersionInfo" " Paths_kore" ] ;
821
+ modules = [ "GlobalMain" "Paths_kore" ] ;
821
822
hsSourceDirs = [ "app/repl" "app/share" ] ;
822
823
mainPath = ( [
823
824
"Main.hs"
You can’t perform that action at this time.
0 commit comments