Is there a (standard?) way in REQUIRE (or otherwise) to: 1. specify that a dependency should be the master version of a package, or a specific commit. I mean something like what Pkg.checkout does, but for dependencies. 2. Depend on unregistered packages purely using the repository git url (as Pkg.clone does)
I would like to do 1 because there are some packages which my packages depend on which have bugs. These bugs have been fixed, but the new versions have not been tagged and published yet. Of course locally I can just do Pkg.checkout, but I would like other people to be able to use my packages. I would to do 2 because I have small packages which by themselves may not need to be in the public repository, but I depend on them in larger packages. Zenna