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
Provide re-exports of the dependent crates so that developers do not need to extern and use dependencies in their own code. Example
extern
use
pub use scaffolding_macros::*; use serde_derive::{Deserialize, Serialize}; use std::collections::BTreeMap;
Person
The text was updated successfully, but these errors were encountered:
Issue #45, Issue #46
f9ef686
Release 2.0.0
Sorry, something went wrong.
dsietz
No branches or pull requests
Provide re-exports of the dependent crates so that developers do not need to
extern
anduse
dependencies in their own code.Example
Person
object without having to import all the dependenciesThe text was updated successfully, but these errors were encountered: