├── .envrc ├── .github ├── dependabot.yml └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix ├── src └── lib.rs ├── test-wasm ├── asconfig.json ├── assembly │ ├── index.ts │ └── tsconfig.json ├── index.js ├── package-lock.json ├── package.json └── tests │ └── index.js └── tests ├── skeptic.rs └── strings.rs /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/flake.nix -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/src/lib.rs -------------------------------------------------------------------------------- /test-wasm/asconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/test-wasm/asconfig.json -------------------------------------------------------------------------------- /test-wasm/assembly/index.ts: -------------------------------------------------------------------------------- 1 | export function getString(): string { 2 | return "$¢ह한𝌆"; 3 | } 4 | -------------------------------------------------------------------------------- /test-wasm/assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/test-wasm/assembly/tsconfig.json -------------------------------------------------------------------------------- /test-wasm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/test-wasm/index.js -------------------------------------------------------------------------------- /test-wasm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/test-wasm/package-lock.json -------------------------------------------------------------------------------- /test-wasm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/test-wasm/package.json -------------------------------------------------------------------------------- /test-wasm/tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/test-wasm/tests/index.js -------------------------------------------------------------------------------- /tests/skeptic.rs: -------------------------------------------------------------------------------- 1 | include!(concat!(env!("OUT_DIR"), "/skeptic-tests.rs")); 2 | -------------------------------------------------------------------------------- /tests/strings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onsails/wasmer-as/HEAD/tests/strings.rs --------------------------------------------------------------------------------