Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-22 | Update third_party submodule | Ryan Dahl | |
2018-07-22 | Replace packer with rollup | Kitson Kelly | |
2018-07-21 | Add tools/test.py test runner. (#384) | Ryan Dahl | |
2018-07-21 | Fix symlink creation on windows | Bert Belder | |
2018-07-21 | Add deno_third_party as git submodule. | Ryan Dahl | |
2018-07-21 | Fix some warnings (#379) | Yoshiya Hinosawa | |
2018-07-20 | Suppress misleading rustc warning when running gn gen | Bert Belder | |
rustc prints the warning: `-C save-temps` might not produce all requested temporary products when incremental compilation is enabled. However, incremental compilation isn't even enabled. A look at the Rust source code confirms that this warning is indeed printed unconditionally when the `-C save-temps` flag is specified: https://github.com/rust-lang/rust/blob/5f2b325f64ed6caa7179f3e04913db437656ec7e/src/librustc/session/config.rs#L1015-L1018 | |||
2018-07-20 | Use 2 space indent. | Ryan Dahl | |
Apologies for the churn, but my screen is small. rustfmt assumes big monitors. | |||
2018-07-20 | Wrap rust at 80 columns. | Ryan Dahl | |
2018-07-19 | Make test_resolve_module pass on windows | Bert Belder | |
2018-07-19 | Link rust_test targets with external linker, fix handlers_test linkage | Bert Belder | |
2018-07-19 | cleanup: Move C extern code to src/binding.rs | Ryan Dahl | |
2018-07-18 | Use Cargo to install rust deps into //third_party/rust_crates (#383) | robbym | |
2018-07-18 | Rename deno_nosnapshot to deno_ns. | Ryan Dahl | |
2018-07-18 | Better exception output. | Ryan Dahl | |
2018-07-18 | Execute JS for the first time in Rust rewrite. | Ryan Dahl | |
Implements code_fetch handler in Rust. Add ability to embed string assets (for typescript declaration files) Remove deno_cc and deno_cc_nosnapshot targets. | |||
2018-07-18 | Minimize snapshot deps by adding deno_base target. | Ryan Dahl | |
Also adds main.map to bundle outputs in GN. | |||
2018-07-18 | Add rust crate log to third_party. | Ryan Dahl | |
2018-07-18 | Add deno::Basename and deno::BinaryContentAsC utilies. | Ryan Dahl | |
These are prep for code sharing with the asset code soon to land. | |||
2018-07-18 | Downgrade typescript to 2.8.3 | Ryan Dahl | |
This is to exactly match the runtime in the prototype for easier debugging. We will upgrade once the runtime is functional being tested properly. | |||
2018-07-18 | Fix warnings in mock_runtime_test.cc | Ryan Dahl | |
2018-07-18 | Reduce unnecessary build output. | Ryan Dahl | |
2018-07-14 | update v8 version in readme to match reality | Mike Reinstein | |
2018-07-13 | Run tools/format.py | Ryan Dahl | |
2018-07-13 | Add :all target | Ryan Dahl | |
2018-07-13 | gclient sync should be shallow | Ryan Dahl | |
2018-07-13 | Move C++ test main function to its own file. | Ryan Dahl | |
2018-07-13 | Create .gitattributes | Kompwu | |
2018-07-12 | Add color to rustc output (except windows) | Ryan Dahl | |
2018-07-12 | Move buffers between V8 and native | Bert Belder | |
* send()/recv() now operate on TypedArrays rather than ArrayBuffers. * Remove a copy (through ArrayBuffer.slice()) from the send path. * Remove a copy (through v8::ArrayBuffer::New()) from the return path. * After moving a buffer from JS to native, the ArrayBuffer object and it's views are made inaccessible ('neutered'). * `struct deno_buf` now holds two [ptr, length] tuples, one for the actual memory allocation, and one for the logical data contained therein. This is necessary because flatbuffers fills it's buffer bottom-up, so the serialized blob doesn't start at beginning of the buffer, but somewhere in the middle. | |||
2018-07-12 | Remove channel argument from Rust message callback | Bert Belder | |
This makes `deno` not crash any more. | |||
2018-07-12 | Add nosnapshot executables for faster incremental builds (#359) | Faris Amali Alis | |
Fixes #311. | |||
2018-07-10 | Remove -f option from rustfmt. (#356) | Ryan Dahl | |
And add support for RUSTFMT_FLAGS (Some people might need -f option) | |||
2018-07-10 | windows: add .exe extension to executable produced by rust_test template | Bert Belder | |
2018-07-10 | Add rust url crate. (#355) | Ryan Dahl | |
2018-07-09 | Move libc build def to //build_extra/rust | Ryan Dahl | |
This is preperation for adding many more third_party crates. | |||
2018-07-09 | Fix rust depfile problem. | Ryan Dahl | |
Fixes #316. | |||
2018-07-09 | chore: use local prettier | Yoshiya Hinosawa | |
2018-07-09 | Regenerate msg_generated.ts | Bert Belder | |
I forgot to commit this file in 8a17db8. | |||
2018-07-08 | Add 'command id' field to messages | Bert Belder | |
This allows for correlating response messages to the command message that caused them. | |||
2018-07-08 | tools: fix windows | Bert Belder | |
This fixes most things, but format.py doesn't work yet, because yapf is broken due to some depot_tools shimming python. | |||
2018-07-08 | Clean up tools/ | Ryan Dahl | |
- Factor out tools/util.py - Move js/*.py to tools. - Rewrite tools/format.sh in python. - Run lint first in travis. | |||
2018-07-08 | tools: generate third_party dir and symlinks from the script. (#346) | Yoshiya Hinosawa | |
Everyone needs to run ./tools/build_third_party.py after this commit. | |||
2018-07-08 | Rewrite tools/lint.sh in python (#343) | Hao Li | |
2018-07-07 | Move flatbuffers gn files to //build_extra/flatbuffers | Ryan Dahl | |
Fixes #342. | |||
2018-07-07 | Merge flatbuffer.gni and ts_flatbuffer.gni | Ryan Dahl | |
2018-07-07 | Fix command in README | Ryan Dahl | |
2018-07-07 | Add rust_test to gn build, with working example. | Ryan Dahl | |
2018-07-06 | Remove channel parameter from deno_send/recv. | Ryan Dahl | |
2018-07-06 | Use C++ to do flatbuffer parsing. | Ryan Dahl | |
- Port protobuf messages to flatbuffers. - Demo linking to rust from C++ executable. - Start using the prototype TS libraries. |