We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Clojure has another manifest format file called deps.edn, details over here: https://clojure.org/reference/deps_and_cli#_deps_edn
deps.edn
The file format is Extensible Data Notation, and there looks like there's a ruby library we can use to read it: https://github.com/relevance/edn-ruby
Extensible Data Notation
Basic example:
{:deps {hiccup {:mvn/version "1.0.5"} garden {:mvn/version "1.3.3"}}}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Clojure has another manifest format file called
deps.edn
, details over here: https://clojure.org/reference/deps_and_cli#_deps_ednThe file format is
Extensible Data Notation
, and there looks like there's a ruby library we can use to read it: https://github.com/relevance/edn-rubyBasic example:
The text was updated successfully, but these errors were encountered: