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

Add dependencies to dune-project file #452

Merged
merged 2 commits into from
Nov 4, 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
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
21 changes: 19 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,26 @@
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
(menhir :build)
menhirLib
ppx_deriving
visitors
zarith
)
)
5 changes: 5 additions & 0 deletions name_matcher_parser.opam
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ homepage: "https://github.com/AeneasVerif/charon"
bug-reports: "https://github.com/AeneasVerif/charon/issues"
depends: [
"dune" {>= "3.7"}
"menhir" {build}
"menhirLib"
"ppx_deriving"
"visitors"
"zarith"
"odoc" {with-doc}
]
build: [
Expand Down