-
Notifications
You must be signed in to change notification settings - Fork 71
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
feat: add extra field #811
feat: add extra field #811
Conversation
Co-authored-by: Bas Zalmstra <zalmstra.bas@gmail.com>
it looks like we need to use serde_json::Value as extra can contain different objects types |
I think we should use an |
Or btree? |
I reused FxHashMap as we do in repodata https://github.com/conda/rattler/pull/811/files#diff-f3f025171cefa329a0941f97a0d4e169ed0bffa1a87996b2f4367513c724c0beL41 , it is ok? |
I would prefer to just keep the insertion order using an |
changed to BTreeMap to not have reproducibility issues in future |
Needed for conda-forge/conda-smithy#2034