-
Notifications
You must be signed in to change notification settings - Fork 36
Added num/malachite features for format crate #109
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
Added num/malachite features for format crate #109
Conversation
aa86d62 to
a398b11
Compare
youknowone
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for contributing! Could you please check if we can go without explicit malachite-bigint and num-bigint features or not?
ast/Cargo.toml
Outdated
| malachite-bigint = ["dep:malachite-bigint"] | ||
| num-bigint = ["dep:num-bigint"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need these lines? Isn't an optional dependency name itself a dependency name? Please let me know if I am missing recently changed recommendation or guideline.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, you are right. these are not needed. I will update this and the PR to RustPython as well.
4efe36b to
2cf5c64
Compare
2cf5c64 to
99284e3
Compare
|
Hi @youknowone, Removed the unnecessary features(rebased). |
youknowone
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
To make
malachite-bigintoptional andnum-bigintoptin for RustPythonformatcrate needs the features.Trying to solve for RustPython/RustPython#5130 (comment)