Skip to content
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

Wapm 4 #43

Open
wants to merge 42 commits into
base: slim
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
289edb8
Improved styles
syrusakbary Nov 13, 2021
044878d
Merge branch 'master' into wapm
syrusakbary Nov 13, 2021
d40f8c7
Merge branch 'master' into wapm
syrusakbary Nov 14, 2021
73b1c35
Merge branch 'master' of github.com:john-sharratt/ate into wapm
syrusakbary Nov 15, 2021
819ee50
Improved wapm styles
syrusakbary Nov 15, 2021
aabfeca
Updated icons
syrusakbary Nov 15, 2021
57a22c4
Fixed font issues
syrusakbary Nov 15, 2021
b6fbcae
Added wapm shell
syrusakbary Nov 15, 2021
1408858
Added headers to use WASM threads
syrusakbary Nov 15, 2021
3a8ebd7
Added 404 page
syrusakbary Nov 15, 2021
94dd8f8
Merge branch 'master' into wapm
syrusakbary Nov 15, 2021
37e6347
Updated bad worker text
syrusakbary Nov 15, 2021
e19f3b2
Create main.yml
syrusakbary Nov 15, 2021
06245fc
Improved even more the terminal
syrusakbary Nov 15, 2021
5cb8020
Merge branch 'wapm' of github.com:wasmerio/ate into wapm
syrusakbary Nov 15, 2021
93870a3
Remove main
syrusakbary Nov 15, 2021
c4893d3
Merge branch 'master' into wapm
syrusakbary Nov 15, 2021
1c24b56
Merge branch 'master' of github.com:john-sharratt/ate into wapm
syrusakbary Nov 17, 2021
08380d9
Merge pull request #1 from tokera-com/master
syrusakbary Nov 18, 2021
82f0a9a
Merge branch 'wapm' into wapm-2
syrusakbary Dec 16, 2021
e74a862
Fix issues
syrusakbary Dec 16, 2021
8664166
Added fonts and so
syrusakbary Dec 16, 2021
e1b8f22
Merge branch 'master' into wapm-2
syrusakbary Dec 17, 2021
7fb855f
Improved start function
syrusakbary Dec 17, 2021
83444f6
Improved a bit the initializer
syrusakbary Dec 21, 2021
e601381
Improved bindings
syrusakbary Apr 7, 2022
3da504e
Merge branch 'master' into wapm-2
syrusakbary Apr 7, 2022
d2772ca
Fixed issues
syrusakbary Apr 7, 2022
2e17ca5
Fixed dependencies
syrusakbary Apr 7, 2022
f36ff18
Remove node modules
syrusakbary Apr 7, 2022
af74765
Almost working
syrusakbary Apr 8, 2022
2095824
Update glue
syrusakbary Apr 8, 2022
0d81760
Improved callback
syrusakbary Apr 8, 2022
b58fdb9
Fixed console
syrusakbary Apr 9, 2022
9febc75
Merge branch 'master' into wapm-3
syrusakbary Apr 9, 2022
f5c1230
Trying to fix env set
syrusakbary Sep 27, 2022
c50a6ff
Merge branch 'master' into wapm-3
syrusakbary Sep 30, 2022
b43cdaf
Bring engine up
syrusakbary Sep 30, 2022
8ee4759
Update version of wasmer
syrusakbary Sep 30, 2022
4c946cd
Merge branch 'slim' into wapm-3
syrusakbary Sep 30, 2022
5edf536
Updated cargo descriptions
syrusakbary Oct 1, 2022
78c5a00
Some fixes
syrusakbary Oct 1, 2022
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
30 changes: 30 additions & 0 deletions .github/workflows/wapm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI
on:
push:
branches: [ wapm ]
pull_request:
branches: [ wapm ]

env:
CARGO_TERM_COLOR: always
RUST_MIN_STACK: 20971520

jobs:
tokterm:
name: Build Wapm Shell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build
run: |
cd tokterm
npm install
npm run build
cp -r public/* dist/
- name: Publish documentation
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: tokterm/dist
12 changes: 11 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@ members = [

[patch.crates-io]
tokio = { git = "https://github.com/john-sharratt/tokio.git", branch = "wasix" }
wasmer-vfs = { path = "/prog/wasmer/lib/vfs" }

wasmer = { path = "../../wasmer/lib/api" }
wasmer-wasi = { path = "../../wasmer/lib/wasi" }
wasmer-vfs = { path = "../../wasmer/lib/vfs" }
wasmer-compiler-cranelift = { path = "../../wasmer/lib/compiler-cranelift" }
wasmer-compiler-llvm = { path = "../../wasmer/lib/compiler-llvm" }
wasmer-compiler-singlepass = { path = "../../wasmer/lib/compiler-singlepass" }
wasmer-compiler = { path = "../../wasmer/lib/compiler" }
wasmer-emscripten = { path = "../../wasmer/lib/emscripten" }
wasmer-wasi-local-networking = { path = "../../wasmer/lib/wasi-local-networking" }

#tokio = { path = "/prog/tokio/tokio" }

2 changes: 1 addition & 1 deletion atedb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "Distributed datachain (database) built on an immutable data store
license = "MIT OR Apache-2.0"
keywords = ["immutable", "database", "server", "async" ]
categories = ["database", "cryptography", "database-implementations", "asynchronous"]
repository = "https://github.com/john-sharratt/ate/atedb"
repository = "https://github.com/wasmerio/ate/atedb"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion comms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "Provides the communication library integrates with ate"
license = "MIT OR Apache-2.0"
keywords = [ "networking" ]
categories = [ "networking" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "Provides all the cryptographic functions"
license = "MIT OR Apache-2.0"
keywords = [ "cryptography" ]
categories = [ "cryptography" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion files/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "Model and helper functions for access files stored in ATEs"
license = "MIT OR Apache-2.0"
keywords = ["immutable", "filesystem", "fs" ]
categories = ["filesystem", "database", "development-tools"]
repository = "https://github.com/john-sharratt/ate/tree/master/wasmer-dfs"
repository = "https://github.com/wasmerio/ate/tree/master/wasmer-dfs"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion files/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ from the distributed redo log..

## What is ATE

[See here](https://github.com/john-sharratt/ate/blob/master/README.md)
[See here](https://github.com/wasmerio/ate/blob/master/README.md)

## Contribution

Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "Distributed immutable data store with strong encryption and authe
license = "MIT OR Apache-2.0"
keywords = ["immutable", "database", "crypto", "nosql", "async"]
categories = ["asynchronous", "caching", "cryptography", "database-implementations"]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "../README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-auth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "Represents a standardized data model and API for authenticating a
license = "MIT OR Apache-2.0"
keywords = [ "authentication", "cli", "authorization", "crypto" ]
categories = [ "data-structures", "command-line-utilities", "authentication", "cryptography" ]
repository = "https://github.com/john-sharratt/ate/auth"
repository = "https://github.com/wasmerio/ate/auth"
readme = "README.md"

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-bus/deploy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "WebAssembly fuse bus interface"
license = "MIT OR Apache-2.0"
keywords = [ "wasi", "wasm", "bus", "fuse" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-bus/fuse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "WebAssembly fuse bus interface"
license = "MIT OR Apache-2.0"
keywords = [ "wasi", "wasm", "bus", "fuse" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-bus/hello/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "WebAssembly Bus Hello World"
license = "MIT OR Apache-2.0"
keywords = [ "wasi", "wasm", "bus", "time" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-bus/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "Invocation bus for web assembly modules"
license = "MIT OR Apache-2.0"
keywords = [ "wasi", "wasm", "bus" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion wasmer-bus/macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "WebAssembly Bus Macros"
license = "MIT OR Apache-2.0"
keywords = [ "wasi", "wasm", "bus" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-bus/mio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "WebAssembly MIO"
license = "MIT OR Apache-2.0"
keywords = [ "wasi", "wasm", "opengl", "webgl" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-bus/process/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "WebAssembly Process Interface"
license = "MIT OR Apache-2.0"
keywords = [ "wasi", "wasm", "bus", "process" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-bus/reqwest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "WebAssembly HTTP(s) Web Request Interface"
license = "MIT OR Apache-2.0"
keywords = [ "wasi", "wasm", "bus", "http", "api" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-bus/time/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "WebAssembly Time Interface"
license = "MIT OR Apache-2.0"
keywords = [ "wasi", "wasm", "bus", "time" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-bus/tty/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "WebAssembly Terminal Interface"
license = "MIT OR Apache-2.0"
keywords = [ "wasi", "wasm", "bus", "websocket" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-bus/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "WebAssembly Bus Macros"
license = "MIT OR Apache-2.0"
keywords = [ "wasi", "wasm", "bus" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-bus/webgl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "WebAssembly WebGL Interface"
license = "MIT OR Apache-2.0"
keywords = [ "wasi", "wasm", "opengl", "webgl" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-bus/ws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "WebAssembly Web Socket Interface"
license = "MIT OR Apache-2.0"
keywords = [ "wasi", "wasm", "bus", "websocket" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-dfs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ particular varient has some unique qualities that differentiate it from others.

## What is ATE

[See here](https://github.com/john-sharratt/ate/blob/master/README.md)
[See here](https://github.com/wasmerio/ate/blob/master/README.md)

## Summary

Expand Down
2 changes: 1 addition & 1 deletion wasmer-dnet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = [
"http-server",
]
categories = ["network-programming", "web-programming::http-server"]
repository = "https://github.com/john-sharratt/ate/tree/master/wasmer-dfs"
repository = "https://github.com/wasmerio/ate/tree/master/wasmer-dfs"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-gw/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = [
"http-server",
]
categories = ["network-programming", "web-programming::http-server"]
repository = "https://github.com/john-sharratt/ate/tree/master/wasmer-dfs"
repository = "https://github.com/wasmerio/ate/tree/master/wasmer-dfs"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-gw/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ AteWeb also includes an automation certificate generation engine using LetsEncry

## What is ATE

[See here](https://github.com/john-sharratt/ate/blob/master/README.md)
[See here](https://github.com/wasmerio/ate/blob/master/README.md)

## Contribution

Expand Down
2 changes: 1 addition & 1 deletion wasmer-instance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = [
"ssh-server",
"wasm"
]
repository = "https://github.com/john-sharratt/ate/tree/master/wasmer-instance"
repository = "https://github.com/wasmerio/ate/tree/master/wasmer-instance"
readme = "README.md"

[features]
Expand Down
2 changes: 1 addition & 1 deletion wasmer-instance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ running with full wasmer-bus support.

## What is ATE

[See here](https://github.com/john-sharratt/ate/blob/master/README.md)
[See here](https://github.com/wasmerio/ate/blob/master/README.md)

## Contribution

Expand Down
2 changes: 1 addition & 1 deletion wasmer-os-grammar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = true
description = "Terminal Shell Grammar"
license = "MIT OR Apache-2.0"
keywords = [ "wasm", "browser", "terminal" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "../README.md"

[dependencies]
Expand Down
47 changes: 24 additions & 23 deletions wasmer-os/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
description = "Terminal Library built on WASMER and ATE"
license = "MIT OR Apache-2.0"
keywords = [ "wasm", "browser", "terminal" ]
repository = "https://github.com/john-sharratt/ate"
repository = "https://github.com/wasmerio/ate"
readme = "../README.md"

[features]
Expand All @@ -24,29 +24,30 @@ async_ws = [ ]
[dependencies]
wasmer-os-grammar = { version = "^0.1", path = "../wasmer-os-grammar", package = "wasmer-os-grammar" }

#wasmer = { version = "3.0.0-beta", git = "https://github.com/john-sharratt/wasmer.git", branch = "wasmer3-wasix", default-features = false, features = [ "wat"] }
#wasmer-wasi = { version = "3.0.0-beta", git = "https://github.com/john-sharratt/wasmer.git", branch = "wasmer3-wasix", default-features = false, features = [ "mem-fs" ] }
#wasmer-vfs = { version = "3.0.0-beta", git = "https://github.com/john-sharratt/wasmer.git", branch = "wasmer3-wasix", default-features = false, features = ["mem-fs"] }
#wasmer-vnet = { version = "3.0.0-beta", git = "https://github.com/john-sharratt/wasmer.git", branch = "wasmer3-wasix", default-features = false }
#wasmer-vbus = { version = "3.0.0-beta", git = "https://github.com/john-sharratt/wasmer.git", branch = "wasmer3-wasix", default-features = false }
#wasmer-compiler-cranelift = { version = "3.0.0-beta", git = "https://github.com/john-sharratt/wasmer.git", branch = "wasmer3-wasix", optional = true }
#wasmer-compiler-llvm = { version = "3.0.0-beta", git = "https://github.com/john-sharratt/wasmer.git", branch = "wasmer3-wasix", optional = true }
#wasmer-compiler-singlepass = { version = "3.0.0-beta", git = "https://github.com/john-sharratt/wasmer.git", branch = "wasmer3-wasix", optional = true }
#wasmer-compiler = { version = "3.0.0-beta", git = "https://github.com/john-sharratt/wasmer.git", branch = "wasmer3-wasix", features = [ "translator" ], optional = true }
#wasmer-wasi-local-networking = { version = "3.0.0-beta", git = "https://github.com/john-sharratt/wasmer.git", branch = "wasmer3-wasix", optional = true }
wasmer = { version = "3.0.0-beta", git = "https://github.com/wasmerio/wasmer.git", branch = "wasix", default-features = false, features = [ "wat"] }
wasmer-wasi = { version = "3.0.0-beta", git = "https://github.com/wasmerio/wasmer.git", branch = "wasix", default-features = false, features = [ "mem-fs" ] }
wasmer-vfs = { version = "3.0.0-beta", git = "https://github.com/wasmerio/wasmer.git", branch = "wasix", default-features = false, features = ["mem-fs"] }
wasmer-vnet = { version = "3.0.0-beta", git = "https://github.com/wasmerio/wasmer.git", branch = "wasix", default-features = false }
wasmer-vbus = { version = "3.0.0-beta", git = "https://github.com/wasmerio/wasmer.git", branch = "wasix", default-features = false }
wasmer-compiler-cranelift = { version = "3.0.0-beta", git = "https://github.com/wasmerio/wasmer.git", branch = "wasix", optional = true }
wasmer-compiler-llvm = { version = "3.0.0-beta", git = "https://github.com/wasmerio/wasmer.git", branch = "wasix", optional = true }
wasmer-compiler-singlepass = { version = "3.0.0-beta", git = "https://github.com/wasmerio/wasmer.git", branch = "wasix", optional = true }
wasmer-compiler = { version = "3.0.0-beta", git = "https://github.com/wasmerio/wasmer.git", branch = "wasix", features = [ "translator" ], optional = true }
wasmer-wasi-local-networking = { version = "3.0.0-beta", git = "https://github.com/wasmerio/wasmer.git", branch = "wasix", optional = true }

wasmer = { version = "3.0.0-beta", path = "../../wasmer/lib/api", default-features = false, features = [ "wat", "tracing" ] }
wasmer-wasi = { version = "3.0.0-beta", path = "../../wasmer/lib/wasi", default-features = false, features = [ "mem-fs" ] }
wasmer-vfs = { version = "3.0.0-beta", path = "../../wasmer/lib/vfs", default-features = false, features = ["mem-fs"] }
wasmer-vnet = { version = "3.0.0-beta", path = "../../wasmer/lib/vnet", default-features = false }
wasmer-vbus = { version = "3.0.0-beta", path = "../../wasmer/lib/vbus", default-features = false }
wasmer-compiler-cranelift = { version = "3.0.0-beta", path = "../../wasmer/lib/compiler-cranelift", optional = true }
wasmer-compiler-llvm = { version = "3.0.0-beta", path = "../../wasmer/lib/compiler-llvm", optional = true }
wasmer-compiler-singlepass = { version = "3.0.0-beta", path = "../../wasmer/lib/compiler-singlepass", optional = true }
wasmer-compiler = { version = "3.0.0-beta", path = "../../wasmer/lib/compiler", features = [ "translator" ], optional = true }
wasmer-wasi-local-networking = { version = "3.0.0-beta", path = "../../wasmer/lib/wasi-local-networking", optional = true }
webc = { version = "0.1", path = "../../pirita/crates/webc" }
webc-vfs = { version = "0.1", path = "../../pirita/crates/webc-vfs" }
# wasmer = { version = "3.0.0-beta", path = "../../../wasmer/lib/api", default-features = false, features = [ "wat", "tracing" ] }
# wasmer-wasi = { version = "3.0.0-beta", path = "../../../wasmer/lib/wasi", default-features = false, features = [ "mem-fs" ] }
# wasmer-vfs = { version = "3.0.0-beta", path = "../../../wasmer/lib/vfs", default-features = false, features = ["mem-fs"] }
# wasmer-vnet = { version = "3.0.0-beta", path = "../../../wasmer/lib/vnet", default-features = false }
# wasmer-vbus = { version = "3.0.0-beta", path = "../../../wasmer/lib/vbus", default-features = false }
# wasmer-compiler-cranelift = { version = "3.0.0-beta", path = "../../../wasmer/lib/compiler-cranelift", optional = true }
# wasmer-compiler-llvm = { version = "3.0.0-beta", path = "../../../wasmer/lib/compiler-llvm", optional = true }
# wasmer-compiler-singlepass = { version = "3.0.0-beta", path = "../../../wasmer/lib/compiler-singlepass", optional = true }
# wasmer-compiler = { version = "3.0.0-beta", path = "../../../wasmer/lib/compiler", features = [ "translator" ], optional = true }
# wasmer-wasi-local-networking = { version = "3.0.0-beta", path = "../../../wasmer/lib/wasi-local-networking", optional = true }

webc = { version = "0.1", path = "../../../pirita/crates/webc" }
webc-vfs = { version = "0.1", path = "../../../pirita/crates/webc-vfs" }

chrono = { version = "^0.4", git = "https://github.com/john-sharratt/chrono.git" }
tracing = { version = "^0.1" }
Expand Down
4 changes: 2 additions & 2 deletions wasmer-os/src/builtins/export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ pub(super) fn export(

for arg in &args[1..] {
if arg.contains('=') {
let key = ctx.env.parse_key(arg);
let (key, value) = ctx.env.parse_key_value(arg);
ctx.env.export(key.as_str());
ctx.env.set_vareq_with_key(key, arg.clone());
ctx.env.set_var(&key, value);
} else {
ctx.env.export(arg.as_str())
}
Expand Down
4 changes: 2 additions & 2 deletions wasmer-os/src/builtins/readonly.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ pub(super) fn readonly(

for arg in &args[1..] {
if arg.contains('=') {
let key = ctx.env.parse_key(arg);
let (key, value) = ctx.env.parse_key_value(arg);
ctx.env.readonly(key.as_str());
ctx.env.set_vareq_with_key(key, arg.clone());
ctx.env.set_var(&key, value);
} else {
ctx.env.readonly(arg.as_str())
}
Expand Down
Loading