feat: initialize Soroban workspace and CI#179
Merged
Conversation
- Workspace Cargo.toml with members: campaign, token-bridge, common - soroban-sdk 26.0.1 pinned; wasm32v1-none target via .cargo/config.toml - Minimal Soroban contract stubs for campaign and token-bridge crates - Shared error types in common crate - GitHub Actions CI: fmt, clippy, test, WASM build + size report Closes Dfunder#158 Closes Dfunder#161
|
@Alqku Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
ayshadogo
approved these changes
May 27, 2026
Contributor
ayshadogo
left a comment
There was a problem hiding this comment.
Looks good to me
Job Well done
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Resolves both issues assigned to Alqku.
Changes
Issue #158 — Initialize Soroban Rust workspace
Cargo.toml: workspace with memberscampaign,token-bridge,commonsoroban-sdk = "26.0.1"pinned as workspace dependency.cargo/config.toml: default build targetwasm32v1-none(required for soroban-sdk 26 on Rust 1.84+)#[contract]stubs forcampaignandtoken-bridge; shared error types incommonIssue #161 — GitHub Actions CI
.github/workflows/ci.yml: runs on every PR tomaincargo fmt --check,cargo clippy,cargo test, WASM release build, contract size reportVerified locally
cargo build --target wasm32v1-none --release✅cargo test --all --target x86_64-unknown-linux-gnu✅Closes #158
Closes #161