├── .github └── workflows │ └── rust.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE.txt ├── README.md ├── examples ├── hello │ ├── .cargo-ok │ ├── .cargo │ │ └── config │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── hello_wasi │ ├── .cargo-ok │ ├── .cargo │ └── config │ ├── .gitignore │ ├── .keys │ ├── account.nk │ └── module.nk │ ├── Cargo.toml │ └── src │ └── lib.rs └── src ├── errors.rs └── lib.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | .DS_Store 5 | .idea 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/README.md -------------------------------------------------------------------------------- /examples/hello/.cargo-ok: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/hello/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/examples/hello/.cargo/config -------------------------------------------------------------------------------- /examples/hello/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/examples/hello/.gitignore -------------------------------------------------------------------------------- /examples/hello/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/examples/hello/Cargo.toml -------------------------------------------------------------------------------- /examples/hello/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/examples/hello/src/lib.rs -------------------------------------------------------------------------------- /examples/hello_wasi/.cargo-ok: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/hello_wasi/.cargo/config: -------------------------------------------------------------------------------- 1 | [build] 2 | target = "wasm32-wasi" -------------------------------------------------------------------------------- /examples/hello_wasi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/examples/hello_wasi/.gitignore -------------------------------------------------------------------------------- /examples/hello_wasi/.keys/account.nk: -------------------------------------------------------------------------------- 1 | SAAJKDNCSW6RBR6RJXJ5EC36YDCJTPAIESPKFTKTCINV672RWDHYAMNCTQ 2 | 3 | -------------------------------------------------------------------------------- /examples/hello_wasi/.keys/module.nk: -------------------------------------------------------------------------------- 1 | SMAJQNR3JWFNNSE7CYSCR2BRFB2VJTURR4HV7JTMVYGUH4KCSPL5235SEE 2 | 3 | -------------------------------------------------------------------------------- /examples/hello_wasi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/examples/hello_wasi/Cargo.toml -------------------------------------------------------------------------------- /examples/hello_wasi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/examples/hello_wasi/src/lib.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wapc/wapc-rust/HEAD/src/lib.rs --------------------------------------------------------------------------------