Skip to content

Commit

Permalink
feat: move repository to cargo workspace and create WIT plugin struct…
Browse files Browse the repository at this point in the history
…ure (#141)

* chore: move proxy server to a workspace structure

* feat: create WIT plugin exports and sample WASM plugin

* chore: reorganize folders

* chore: comment unused code
  • Loading branch information
luizfonseca authored Oct 31, 2024
1 parent 9f14755 commit bfa82e1
Show file tree
Hide file tree
Showing 59 changed files with 1,518 additions and 975 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
bin: proksi
cross: true
target: x86_64-unknown-linux-gnu
cargo_command: cross
cargo_command: cross
#
- name: proksi-macos-x86_64
os: macos-latest
Expand Down Expand Up @@ -113,13 +113,13 @@ jobs:
shell: bash
if: contains(matrix.platform.os, 'ubuntu')
run: |
${{ matrix.platform.cargo_command }} build --release --target ${{ matrix.platform.target }}
${{ matrix.platform.cargo_command }} build -p proksi --release --target ${{ matrix.platform.target }}
- name: Build binary (OSX)
shell: bash
if: contains(matrix.platform.os, 'macos')
run: |
${{ matrix.platform.cargo_command }} build --release --target ${{ matrix.platform.target }}
${{ matrix.platform.cargo_command }} build -p proksi --release --target ${{ matrix.platform.target }}
- name: Package as archive
shell: bash
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@
.vscode/
/tmp
docker.README.md
/proksi
docker-compose.yml
Loading

0 comments on commit bfa82e1

Please sign in to comment.