Skip to content

Commit

Permalink
Add dependencies to dune-project file
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadrieril committed Nov 4, 2024
1 parent 8f5a1c0 commit db4c21b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
6 changes: 6 additions & 0 deletions charon.opam
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ homepage: "https://github.com/AeneasVerif/charon"
bug-reports: "https://github.com/AeneasVerif/charon/issues"
depends: [
"dune" {>= "3.7"}
"easy_logging"
"ppx_deriving"
"visitors"
"yojson"
"zarith"
"name_matcher_parser"
"odoc" {with-doc}
]
build: [
Expand Down
20 changes: 18 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,25 @@
This library allows for manipulation of LLBC, the language output by
Charon. Charon acts as an interface between the rustc compiler and program
verification projects. Its purpose is to process Rust .rs files and convert
them into files easy to handle by program verifiers."))
them into files easy to handle by program verifiers.")
(depends
easy_logging
ppx_deriving
visitors
yojson
zarith
name_matcher_parser
)
)

(package
(name name_matcher_parser)
(synopsis "Parser to define name matchers")
(description ""))
(description "")
(depends
menhirLib
ppx_deriving
visitors
zarith
)
)
4 changes: 4 additions & 0 deletions name_matcher_parser.opam
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ homepage: "https://github.com/AeneasVerif/charon"
bug-reports: "https://github.com/AeneasVerif/charon/issues"
depends: [
"dune" {>= "3.7"}
"menhirLib"
"ppx_deriving"
"visitors"
"zarith"
"odoc" {with-doc}
]
build: [
Expand Down

0 comments on commit db4c21b

Please sign in to comment.