Skip to content

Commit 4f57a8d

Browse files
committed
Remove ppx_distr_guards dependency
Unused since the removal of FlagModes in #736.
1 parent bf537f1 commit 4f57a8d

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

dune-project

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
(zarith (>= 1.8))
3131
(yojson (>= 2.0.0))
3232
qcheck-core
33-
(ppx_distr_guards (>= 0.2))
3433
ppx_deriving
3534
ppx_deriving_hash
3635
ppx_deriving_yojson

goblint.opam

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ depends: [
2626
"zarith" {>= "1.8"}
2727
"yojson" {>= "2.0.0"}
2828
"qcheck-core"
29-
"ppx_distr_guards" {>= "0.2"}
3029
"ppx_deriving"
3130
"ppx_deriving_hash"
3231
"ppx_deriving_yojson"

goblint.opam.locked

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ depends: [
7676
"ppx_deriving" {= "5.2.1"}
7777
"ppx_deriving_hash" {= "0.1.1"}
7878
"ppx_deriving_yojson" {= "3.6.1"}
79-
"ppx_distr_guards" {= "0.3"}
8079
"ppxlib" {= "0.25.0"}
8180
"qcheck-core" {= "0.18.1"}
8281
"qcheck-ounit" {= "0.18.1" & with-test}

src/dune

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@
3434
)
3535
)
3636
(preprocess
37-
(pps ppx_deriving.std ppx_deriving_hash ppx_deriving_yojson
38-
ppx_distr_guards ppx_blob))
37+
(pps ppx_deriving.std ppx_deriving_hash ppx_deriving_yojson ppx_blob))
3938
(preprocessor_deps (file util/options.schema.json))
4039
)
4140

@@ -53,31 +52,31 @@
5352
(modes byte native) ; https://dune.readthedocs.io/en/stable/dune-files.html#linking-modes
5453
(modules goblint mainarinc mainspec)
5554
(libraries goblint.lib goblint.sites.dune)
56-
(preprocess (pps ppx_deriving.std ppx_deriving_hash ppx_deriving_yojson ppx_distr_guards))
55+
(preprocess (pps ppx_deriving.std ppx_deriving_hash ppx_deriving_yojson))
5756
(flags :standard -linkall)
5857
)
5958

6059
(executable
6160
(name privPrecCompare)
6261
(modules privPrecCompare)
6362
(libraries goblint.lib goblint.sites.dune)
64-
(preprocess (pps ppx_deriving.std ppx_deriving_hash ppx_deriving_yojson ppx_distr_guards))
63+
(preprocess (pps ppx_deriving.std ppx_deriving_hash ppx_deriving_yojson))
6564
(flags :standard -linkall)
6665
)
6766

6867
(executable
6968
(name apronPrecCompare)
7069
(modules apronPrecCompare)
7170
(libraries goblint.lib goblint.sites.dune)
72-
(preprocess (pps ppx_deriving.std ppx_deriving_hash ppx_deriving_yojson ppx_distr_guards))
71+
(preprocess (pps ppx_deriving.std ppx_deriving_hash ppx_deriving_yojson))
7372
(flags :standard -linkall)
7473
)
7574

7675
(executable
7776
(name messagesCompare)
7877
(modules messagesCompare)
7978
(libraries goblint.lib goblint.sites.dune)
80-
(preprocess (pps ppx_deriving.std ppx_deriving_hash ppx_deriving_yojson ppx_distr_guards))
79+
(preprocess (pps ppx_deriving.std ppx_deriving_hash ppx_deriving_yojson))
8180
(flags :standard -linkall)
8281
)
8382

0 commit comments

Comments
 (0)