-
Notifications
You must be signed in to change notification settings - Fork 106
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
Handling Dependencies #62
Comments
I should be able to implement this soon. I'll use a similar toml specification style as Rust's cargo. I got sidetracked implementing the ability to parse that properly for the toml parser we're using. Which brings up a question. Do we specify the specific git version of that library as one of our dependencies, or do we include the functions I implemented directly in our source? For either, at some point we'll be able to remove it and go back to using the library as normal. |
Thanks @everythingfunctional, this will be great to get working! I have a few questions:
|
For now, we'll just support git repository urls, since we don't have a centralized repo yet. Just like cargo does, we'll support tags, commits, or branches being specified for a git dependency. I'm planning to implement version specifications exactly like cargo does. That's a bit longer term goal though. Yes, we'll adopt semantic versioning rules. Long term, it may even be possible to enforce those rules in a centralized repository. In the short term, we won't "resolve" dependency versions. It will just check if the version already downloaded is compatible with the package's requirements. If not we'll just throw an error. You can then "resolve" the conflict by specifying a version that works for all the dependencies in your package. I don't know of any package manager that has really and truly solved the version compatibility search problem. Many have just reasonable approximations or workarounds. |
Closing as implemented in both versions of fpm. |
My basic outline of how to do this is the following recursive algorithm:
a. if it's already been downloaded, check that it's version is compatible, otherwise recursively repeat this process
The text was updated successfully, but these errors were encountered: