Skip to content

chore: Rename to pvq #51

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

Merged
merged 6 commits into from
Feb 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 1 addition & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Check format
run: cargo fmt --all -- --check

- name: Make dummpy poc-guest-%.polkavm files
- name: Make dummy poc-guest-%.polkavm files
run: make dummy-poc-guests

- name: Cargo clippy
Expand Down Expand Up @@ -62,12 +62,6 @@ jobs:
workspaces: poc/guests -> poc/guests/target
cache-all-crates: true

- name: Install toolchain targeting RV32E
run: |
curl -sL https://github.com/paritytech/rustc-rv32e-toolchain/releases/download/v1.1.0/rust-rve-nightly-2024-01-05-x86_64-unknown-linux-gnu.tar.zst -o rv32e.tar.zst
tar --zstd -xf rv32e.tar.zst
mv rve-nightly ~/.rustup/toolchains/

- name: Cargo clippy
run: cd poc/guests; cargo clippy -- -D warnings

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@ target/
# MacOS related
.DS_Store

# VSCode related
.vscode/
output/
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[submodule "vendor/polkavm"]
path = vendor/polkavm
url = https://github.com/acalanetwork/polkavm
url = https://github.com/paritytech/polkavm
[submodule "vendor/polkadot-sdk"]
path = vendor/polkadot-sdk
url = https://github.com/indirection42/polkadot-sdk
branch = xcq-with-xcm-poc
branch = pvq-with-xcm-poc

246 changes: 123 additions & 123 deletions Cargo.lock

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

34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[workspace.package]
authors = ["Acala Developers <hello@acala.network>"]
edition = "2021"
repository = "https://github.com/open-web3-stack/XCQ"
repository = "https://github.com/open-web3-stack/PVQ"
license = "Apache-2.0"
version = "0.1.0"

Expand All @@ -10,14 +10,14 @@ resolver = "2"
members = [
"poc/runtime",

"xcq-api",
"xcq-executor",
"xcq-extension-core",
"xcq-extension-fungibles",
"xcq-extension",
"xcq-primitives",
"xcq-runtime-api",
"xcq-test-runner",
"pvq-api",
"pvq-executor",
"pvq-extension-core",
"pvq-extension-fungibles",
"pvq-extension",
"pvq-primitives",
"pvq-runtime-api",
"pvq-test-runner",

"examples/example-fungibles",
"examples/example-helloworld",
Expand All @@ -31,14 +31,14 @@ opt-level = 3

[workspace.dependencies]
# local
xcq-api = { path = "xcq-api", default-features = false }
xcq-executor = { path = "xcq-executor", default-features = false }
xcq-extension-core = { path = "xcq-extension-core", default-features = false }
xcq-extension-fungibles = { path = "xcq-extension-fungibles", default-features = false }
xcq-extension = { path = "xcq-extension", default-features = false }
xcq-primitives = { path = "xcq-primitives", default-features = false }
xcq-runtime-api = { path = "xcq-runtime-api", default-features = false }
xcq-test-runner = { path = "xcq-test-runner", default-features = false }
pvq-api = { path = "pvq-api", default-features = false }
pvq-executor = { path = "pvq-executor", default-features = false }
pvq-extension-core = { path = "pvq-extension-core", default-features = false }
pvq-extension-fungibles = { path = "pvq-extension-fungibles", default-features = false }
pvq-extension = { path = "pvq-extension", default-features = false }
pvq-primitives = { path = "pvq-primitives", default-features = false }
pvq-runtime-api = { path = "pvq-runtime-api", default-features = false }
pvq-test-runner = { path = "pvq-test-runner", default-features = false }

# polkavm
polkavm = { path = "vendor/polkavm/crates/polkavm", default-features = false }
Expand Down
Loading
Loading