Skip to content

Commit 400b6bb

Browse files
committed
fix: corrupted release entries
1 parent 22f81ae commit 400b6bb

File tree

18 files changed

+291
-17
lines changed

18 files changed

+291
-17
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ genesis-wasm
2222
fly.toml
2323
bin/
2424
integration-tests/chopsticks/db/*
25-
/integration-tests/chopsticks/node_modules/*
26-
/integration-tests/chopsticks/.papi/*
25+
integration-tests/chopsticks/node_modules/*
26+
integration-tests/chopsticks/.papi/descriptors/*

Cargo.lock

Lines changed: 102 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ macros-tests = { path = "macros/tests" }
7373
# External pallets (with default disabled)
7474
orml-oracle = { version = "0.13.0", default-features = false }
7575
orml-traits = { version = "0.13.0", default-features = false }
76-
jwt-compact = { git = "https://github.com/lrazovic/jwt-compact", default-features = false }
76+
jwt-compact = { version = "0.9.0-beta.0", package = "jwt-compact-frame", default-features = false }
7777

7878
# Internal support (with default disabled)
7979
shared-configuration = { path = "runtimes/shared-configuration", default-features = false }
8080
polimec-common = { path = "polimec-common/common", default-features = false }
8181
polimec-common-test-utils = { path = "polimec-common/test-utils", default-features = false }
8282

8383
# External support (with default disabled)
84-
substrate-fixed = { git = "https://github.com/encointer/substrate-fixed", default-features = false }
84+
substrate-fixed = { version = "0.5.9", default-features = false }
8585

8686
# External (without extra features and with default disabled if necessary)
8787
parity-scale-codec = { version = "3.6.12", default-features = false }
@@ -247,4 +247,4 @@ cumulus-pallet-session-benchmarking = { version = "16.0.0", default-features = f
247247
# Runtimes
248248
polimec-runtime = { path = "runtimes/polimec" }
249249
rococo-runtime-constants = { version = "14.0.0" }
250-
rococo-runtime = { version = "14.0.0" }
250+
rococo-runtime = { version = "14.0.0" }

integration-tests/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ std = [
149149
"xcm-executor/std",
150150
"xcm-fee-payment-runtime-api/std",
151151
"xcm/std",
152+
"assets-common/std"
152153
]
153154
development-settings = [ "polimec-runtime/development-settings" ]
154155
runtime-benchmarks = [
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*
2+
!.gitignore
3+
!package.json
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"version": "0.1.0-autogenerated.16545816865329173211",
3+
"name": "@polkadot-api/descriptors",
4+
"files": [
5+
"dist"
6+
],
7+
"exports": {
8+
".": {
9+
"types": "./dist/index.d.ts",
10+
"module": "./dist/index.mjs",
11+
"import": "./dist/index.mjs",
12+
"require": "./dist/index.js"
13+
},
14+
"./package.json": "./package.json"
15+
},
16+
"main": "./dist/index.js",
17+
"module": "./dist/index.mjs",
18+
"browser": "./dist/index.mjs",
19+
"types": "./dist/index.d.ts",
20+
"sideEffects": false,
21+
"peerDependencies": {
22+
"polkadot-api": "*"
23+
}
24+
}
378 KB
Binary file not shown.
305 KB
Binary file not shown.
331 KB
Binary file not shown.
407 KB
Binary file not shown.

0 commit comments

Comments
 (0)