Skip to content

Commit

Permalink
Fix lib/vnet to compile, add wasmer-vnet
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt authored and epilys committed Jul 30, 2022
1 parent 5b2bc4a commit 52a28a3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@ jobs:
- name: Build Wasmer with minimal "sys" features
run: |
cargo build --no-default-features --features="sys" --manifest-path=lib/api/Cargo.toml &&
cargo build --manifest-path=lib/cache/Cargo.toml
cargo build --manifest-path=lib/cache/Cargo.toml &&
cargo build --manifest-path=lib/vbus/Cargo.toml
- name: Dist
if: matrix.build != 'macos-arm64'
run: |
Expand Down
4 changes: 3 additions & 1 deletion lib/vnet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ wasmer-vfs = { path = "../vfs", version = "=3.0.0-alpha.4", default-features = f
bytes = "1"

[features]
default = []
default = ["mem_fs"]
mem_fs = ["wasmer-vfs/mem-fs"]
host_fs = ["wasmer-vfs/host-fs"]
4 changes: 3 additions & 1 deletion scripts/publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@
),
"wasmer-vfs": set([]),
"wasmer-vbus": set([]),
"wasmer-vnet": set([]),
"wasmer-cache": set(["wasmer"]),
"wasmer-wasi": set(["wasmer", "wasmer-wasi-types", "wasmer-vfs", "wasmer-vbus"]),
"wasmer-wasi": set(["wasmer", "wasmer-wasi-types", "wasmer-vfs", "wasmer-vbus", "wasmer-vnet"]),
"wasmer-wasi-types": set(["wasmer-types"]),
"wasmer-wasi-experimental-io-devices": set(["wasmer-wasi"]),
"wasmer-emscripten": set(["wasmer"]),
Expand Down Expand Up @@ -116,6 +117,7 @@
"wasmer-middlewares": "middlewares",
"wasmer-vfs": "vfs",
"wasmer-vbus": "vbus",
"wasmer-vnet": "vnet",
"wasmer-cli": "cli",
"wasmer-wast": "../tests/lib/wast",
}
Expand Down

0 comments on commit 52a28a3

Please sign in to comment.