Bubbles
2 points · 1 day ago · 0 comments

Hare doesn't have a package manager. This is by design and I'm glad for it. No dependency hell, no lock files, no node_modules black hole. However, you still need a way to pull in third-party code. There are two approaches: system-wide installation via make install, and vendoring directly into your project with git subtree. I'll use hare-json as the running example throughout. Our goal is to be able to use this module like so: use encoding::json; use fmt export fn main() void = { let obj ...

No comments yet. Log in to reply on the Fediverse. Comments will appear here.