-
Notifications
You must be signed in to change notification settings - Fork 30
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
Publish on crates.io #67
Comments
Though the API is very unstable and quickly being changed, I want to publish parser related crates to crates.io. |
yeah, this discussion should also be made with other people who use the parser. Probably an RFC would be good to come to a consensus. |
If your reason for hesitating to publish this crate is that it is unstable and you want people to use the stable version as much as possible, you can publish a "nightly version" as follows: [package]
name = "mtshiba-dummycrate-1"
version = "0.0.0-unstable.0" # The `unstable` part can be any other string. For example, alpha, beta, nightly, etc.
edition = "2021"
description = "A dummy crate for testing"
license = "MIT"
[dependencies] You cannot install this crate with Even if several versions have already been released, unstable versions cannot be used unless explicitly specified. (If there is some other reason why a new version cannot be released right now, please ignore it.) |
|
#74 is another wishlist because it breaks API |
I will publish 0.3.0 as current version |
Working on this issue again. It will be done as soon as I resolve crate ownership problems. |
Thank you all for patient! |
Is there a plan to periodically publish updates of this crate to crates.io? Will like to use it externally without depending on git.
If this is not planned please feel free to close this issue.
The text was updated successfully, but these errors were encountered: