Skip to content
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

Integrate scale-info for type generation #2

Merged
merged 17 commits into from
Jan 6, 2021
Prev Previous commit
Next Next commit
WIP v13
ascjones committed Dec 18, 2020
commit 47486f1b66a34cc67a86fde992f35c68f797cf0f
3 changes: 2 additions & 1 deletion frame-metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -14,12 +14,13 @@ targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] }
scale-info = { path = "../../scale-info", package = "scale-info", default-features = false, features = ["derive"] }
scale-info = { path = "../../scale-info", package = "scale-info", default-features = false, optional = true, features = ["derive"] }
serde = { version = "1.0.101", optional = true, features = ["derive"] }

[features]
default = ["std", "v12"]
v12 = []
v13 = ["scale-info"]
std = [
"codec/std",
"scale-info/std",
Loading