├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples ├── .gitignore ├── error_handling │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── simple │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── src │ └── lib.rs │ └── worker │ ├── metadata_wasm.json │ └── worker.js ├── src ├── assets.rs ├── context.rs ├── error.rs ├── httpdate.rs ├── js_values.rs ├── lib.rs ├── media_type.rs ├── method.rs ├── request.rs └── response.rs └── tests ├── context.rs ├── method.rs └── request.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/README.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /examples/error_handling/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/examples/error_handling/.gitignore -------------------------------------------------------------------------------- /examples/error_handling/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/examples/error_handling/Cargo.toml -------------------------------------------------------------------------------- /examples/error_handling/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/examples/error_handling/src/lib.rs -------------------------------------------------------------------------------- /examples/simple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/examples/simple/.gitignore -------------------------------------------------------------------------------- /examples/simple/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/examples/simple/Cargo.toml -------------------------------------------------------------------------------- /examples/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/examples/simple/README.md -------------------------------------------------------------------------------- /examples/simple/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/examples/simple/build.rs -------------------------------------------------------------------------------- /examples/simple/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/examples/simple/src/lib.rs -------------------------------------------------------------------------------- /examples/simple/worker/metadata_wasm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/examples/simple/worker/metadata_wasm.json -------------------------------------------------------------------------------- /examples/simple/worker/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/examples/simple/worker/worker.js -------------------------------------------------------------------------------- /src/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/src/assets.rs -------------------------------------------------------------------------------- /src/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/src/context.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/httpdate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/src/httpdate.rs -------------------------------------------------------------------------------- /src/js_values.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/src/js_values.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/media_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/src/media_type.rs -------------------------------------------------------------------------------- /src/method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/src/method.rs -------------------------------------------------------------------------------- /src/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/src/request.rs -------------------------------------------------------------------------------- /src/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/src/response.rs -------------------------------------------------------------------------------- /tests/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/tests/context.rs -------------------------------------------------------------------------------- /tests/method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/tests/method.rs -------------------------------------------------------------------------------- /tests/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevelr/wasm-service/HEAD/tests/request.rs --------------------------------------------------------------------------------