Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-19 | Rename //src/ to //cli/ (#1962) | Ryan Dahl | |
To better distinguish the deno_core crate from the executable deno, which will now be called "the cli" internally. | |||
2019-03-18 | Integrate //core into existing code base | Ryan Dahl | |
This disables a few tests which are broken still: - tests/error_004_missing_module.test - tests/error_005_missing_dynamic_import.test - tests/error_006_import_ext_failure.test - repl_test test_set_timeout - repl_test test_async_op - repl_test test_set_timeout_interlaced - all of permission_prompt_test | |||
2019-03-12 | Make timers act like normal ops | Ryan Dahl | |
This is in preperation for core integration. | |||
2019-02-12 | Drop assert!() from untrack_task() (#1757) | Kevin (Kun) "Kassimo" Qian | |
2019-02-01 | src: simplify rust code | Bert Belder | |
2019-01-15 | Kill all pending accepts when TCP listener is closed (#1517) | Kevin (Kun) "Kassimo" Qian | |
2019-01-14 | Update to rust 2018 edition | Andy Hayden | |
2019-01-02 | Happy new year! | Ryan Dahl | |
2018-12-11 | Replace blocking! macro by generic function (#1305) | F001 | |
2018-10-19 | Add missing copyrights (#1024) | ztplz | |
2018-10-03 | First pass at support for TCP servers and clients. (#884) | Ryan Dahl | |
Adds deno.listen(), deno.dial(), deno.Listener and deno.Conn. | |||
2018-09-25 | Make Deno multithreaded. | Ryan Dahl | |
By using the tokio default runtime. This patch makes all of the ops thread safe. Adds libdeno to JS globals to make for easier testing. Preliminary work for #733. |