-
Notifications
You must be signed in to change notification settings - Fork 63
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
Add a note about getopts constraints #99
Conversation
cc @rust-lang/libs any thoughts on stabilizing |
👍 to documenting this strict backwards compatibility somewhere and to releasing as 1.0.
|
My impression is that the recommended way to parse command-line arguments in Rust is to use |
I agree with that. But I don't think a release necessarily drives people to use this crate. A crate that's used a lot and promises stability but is version |
What about bumping to 1.0 and moving it to |
Hmm, I guess it's less deprecated and more fixed. Unless @rust-lang/compiler were looking at replacing
We could add some more docs to the readme pointing users to |
Is there a reasonable path for rustc to move to |
@oli-obk I’m not sure to be honest but that sounds like something worth pursuing! |
Since this PR doesn't actually do anything with stabilization I'll go ahead and merge this disclaimer. |
Just thinking back to #84, we need to be careful not to change the way arguments are parsed or we could change the behaviour of
rustc
.At this point, maybe it’s worth just bumping
getopts
to1.0
?