├── .gclient_entries ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── binding.cc ├── binding.h ├── binding.rs ├── handler.rs ├── lib.rs └── worker.rs /.gclient_entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasinsaurralde/rust-v8worker2/HEAD/.gclient_entries -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | v8.pc 3 | target 4 | .vscode/ 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasinsaurralde/rust-v8worker2/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasinsaurralde/rust-v8worker2/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasinsaurralde/rust-v8worker2/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasinsaurralde/rust-v8worker2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasinsaurralde/rust-v8worker2/HEAD/README.md -------------------------------------------------------------------------------- /src/binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasinsaurralde/rust-v8worker2/HEAD/src/binding.cc -------------------------------------------------------------------------------- /src/binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasinsaurralde/rust-v8worker2/HEAD/src/binding.h -------------------------------------------------------------------------------- /src/binding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasinsaurralde/rust-v8worker2/HEAD/src/binding.rs -------------------------------------------------------------------------------- /src/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasinsaurralde/rust-v8worker2/HEAD/src/handler.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasinsaurralde/rust-v8worker2/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/worker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matiasinsaurralde/rust-v8worker2/HEAD/src/worker.rs --------------------------------------------------------------------------------