How can I install specified dependencies in the dune-project file?
There is an opam file but it is empty, is dummy.opam
dune:
(dirs src reanalyze vendor)
dune-project
(lang dune 2.0)
(package
(name test)
(synopsis "test")
(depends
(ocaml
(>= 4.10))
(ocamlformat
(= 0.22.4))
(reanalyze
(= 2.23.0))
dune))
Is there something similar to npm install?
I created a switch using opam switch create ., but did not install ocamformat=0.22.4