We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The latest rewrite brought a lot of breaking changes for users, for the better. It will be part of 0.9 stable.
These types were removed in the new rewrite but for 0.9 stable I'd like to get them back so its less painful to migrate from 0.8.
serde support has been removed. This was a major cause of memory leaks and inefficient. It is recommended to use the new impl classes support instead.
impl
Automatic caching and fetching from GIthub releases has been removed. This was awkward and offered very little flexibility.
Instead, I've add support to lazy initialize the library; binary release, fetch and caching (if desired) is left to the user.
Depreciate old CLI, print warning/error.
Help other crates migrate to 0.9
Probably send a few PRs and open issues on active dependent crates. It will also help identify bugs.
The text was updated successfully, but these errors were encountered:
oh yeah could not use &str as param, instead had to use &String (the compiler built it fine but IDK if it actually works)
&str
&String
Sorry, something went wrong.
No branches or pull requests
The latest rewrite brought a lot of breaking changes for users, for the better. It will be part of 0.9 stable.
These types were removed in the new rewrite but for 0.9 stable I'd like to get them back so its less painful to migrate from 0.8.
serde support has been removed. This was a major cause of memory leaks and inefficient. It is recommended to use the new
impl
classes support instead.Automatic caching and fetching from GIthub releases has been removed. This was awkward and offered very little flexibility.
Instead, I've add support to lazy initialize the library; binary release, fetch and caching (if desired) is left to the user.
Depreciate old CLI, print warning/error.
Help other crates migrate to 0.9
Probably send a few PRs and open issues on active dependent crates. It will also help identify bugs.
The text was updated successfully, but these errors were encountered: