-
-
Notifications
You must be signed in to change notification settings - Fork 143
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
Pub use JSON crate #67
Comments
Thanks @dbrgn ! Is this a best practice/pattern for dealing with multiple version of dependencies? I haven't used this technique in my projects. Is there any drawback for publish these crates? Is it possible to find me an example that I can follow? Thanks! |
I'm not sure, but I think that's what the "pub use" feature is made for :) I opened a similar issue in the One of the advantages is also that a |
Since serde is widely used in user applications, and requires custom derive macro to generate code. I think we cannot do this for handlebars. |
Could you maybe "pub use" the rustc-serialize / serde JSON library that you're using? Otherwise I have to add
serde_json
as an explicit dependency to myCargo.toml
which might not be the same version as the one used byhandlebars
.The text was updated successfully, but these errors were encountered: