-
Notifications
You must be signed in to change notification settings - Fork 430
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
Schema generation #1765
Schema generation #1765
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1765 +/- ##
==========================================
- Coverage 52.11% 52.08% -0.04%
==========================================
Files 207 207
Lines 6652 6652
==========================================
- Hits 3467 3465 -2
- Misses 3185 3187 +2
... and 2 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
@@ -21,7 +21,8 @@ ink_primitives = { version = "4.2.0", path = "../primitives/", default-features | |||
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] } | |||
impl-serde = "0.4.0" | |||
derive_more = { version = "0.99", default-features = false, features = ["from"] } | |||
scale-info = { version = "2.5", default-features = false, features = ["derive", "serde", "decode"] } | |||
scale-info = { version = "2.6", default-features = false, features = ["derive", "serde", "decode", "schema"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps in the future we can add a full
feature that gives you everything!
Related to #1695
This PR allows us to automate the schema generation process for the ink! smart contracts.