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

Use scale-typegen as a backend for the codegen #1260

Merged
Merged
Show file tree
Hide file tree
Changes from 33 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
e163e57
integrate scale-typegen, remove types mod
tadeohepperle Nov 9, 2023
1760792
reintroduce default substitutes and derives
tadeohepperle Nov 10, 2023
b297fc8
support runtime_types only again
tadeohepperle Nov 13, 2023
7a2678a
generating polkadot.rs ok
tadeohepperle Nov 13, 2023
60c1e62
Merge branch 'master' into tadeohepperle/implement-scale-typegen-for-…
tadeohepperle Nov 13, 2023
297d2c6
update scale-typegen to discrete error types
tadeohepperle Nov 15, 2023
f47fd4e
scale-typegen-api-changes
tadeohepperle Nov 21, 2023
03591a6
add note about UncheckedExtrinsic in default substitutes
tadeohepperle Nov 21, 2023
9e56546
Merge branch 'master' into tadeohepperle/implement-scale-typegen-for-…
tadeohepperle Nov 21, 2023
50ed54e
add resursive attributes and derives
tadeohepperle Nov 28, 2023
dabc88c
adjust example where Clone bound recursive
tadeohepperle Nov 28, 2023
cd73d31
Merge branch 'master' into tadeohepperle/implement-scale-typegen-for-…
tadeohepperle Nov 29, 2023
fd718bf
move scale-typegen dependency to workspace
tadeohepperle Nov 29, 2023
985a46c
expose default typegen settings
tadeohepperle Nov 29, 2023
a6b580f
lightclient: Fix wasm socket closure called after being dropped (#1289)
lexnv Nov 29, 2023
44c42c3
workflows: Install rustup component for building substrate (#1295)
lexnv Nov 29, 2023
0724735
cli: Command to fetch chainSpec and optimise its size (#1278)
lexnv Nov 29, 2023
ee1e096
conflicts
tadeohepperle Nov 29, 2023
58b8fee
remove comments and unused args
tadeohepperle Nov 30, 2023
0c7d373
Update substrate- and signer-related dependencies (#1297)
tadeohepperle Nov 30, 2023
42643d8
fix lock file
tadeohepperle Nov 30, 2023
8196b63
Merge branch 'master' into tadeohepperle/implement-scale-typegen-for-…
tadeohepperle Nov 30, 2023
bbda16a
fix lock file again :|
tadeohepperle Nov 30, 2023
4259572
adjust to new interface in scale-typegen
tadeohepperle Dec 8, 2023
14775ab
use released scale typegen
tadeohepperle Jan 2, 2024
69af6d1
reintroduce type aliases
tadeohepperle Jan 2, 2024
f125b2b
introduce type aliases again using scale-typegen
tadeohepperle Jan 2, 2024
602d459
cargo fmt and clippy
tadeohepperle Jan 2, 2024
b18d472
Merge branch 'master' into tadeohepperle/implement-scale-typegen-for-…
tadeohepperle Jan 3, 2024
aaf9ded
reconcile changes with master branch
tadeohepperle Jan 3, 2024
05dbe3f
update polkadot.rs
tadeohepperle Jan 3, 2024
e54cb73
bump scale-typgen to fix substitution
tadeohepperle Jan 5, 2024
24cb3d7
Merge branch 'master' into tadeohepperle/implement-scale-typegen-for-…
tadeohepperle Jan 5, 2024
3d1fdec
implemented Alex suggestions, regenerated polkadot.rs (did not change)
tadeohepperle Jan 9, 2024
f0ef2a9
Merge branch 'master' into tadeohepperle/implement-scale-typegen-for-…
tadeohepperle Jan 9, 2024
72fee7d
Merge branch 'master' into tadeohepperle/implement-scale-typegen-for-…
tadeohepperle Jan 9, 2024
a96c90f
resolve conflicts in Cargo.lock
tadeohepperle Jan 10, 2024
70d3de0
make expect messages more clear
tadeohepperle Jan 11, 2024
00aee3d
correct typos
tadeohepperle Jan 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
126 changes: 58 additions & 68 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 3 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,7 @@ members = [
# We exclude any crates that would depend on non mutually
# exclusive feature flags and thus can't compile with the
# workspace:
exclude = [
"testing/wasm-rpc-tests",
"testing/wasm-lightclient-tests",
"signer/wasm-tests",
"examples/wasm-example",
"examples/parachain-example"
]
exclude = ["testing/wasm-rpc-tests", "testing/wasm-lightclient-tests", "signer/wasm-tests", "examples/wasm-example", "examples/parachain-example"]
resolver = "2"

[workspace.package]
Expand Down Expand Up @@ -99,6 +93,8 @@ trybuild = "1.0.85"
wabt = "0.10.0"
wasm-bindgen-test = "0.3.24"
which = "5.0.0"
scale-typegen-description = "0.1.0"
scale-typegen = "0.1.1"

# Light client support:
smoldot = { version = "0.15.0", default-features = false }
Expand Down
Loading
Loading