summaryrefslogtreecommitdiff
path: root/build_extra
AgeCommit message (Collapse)Author
2019-09-06Remove tools/build.py (#2865)Ryan Dahl
Testing regression: ASAN build removed.
2019-08-30third_party: add 'reqwest' crate and dependenciesBert Belder
2019-08-29Revert "Use -O3 instead of -O (#2070)"Bert Belder
It didn't deliver the expected performance improvements, so let's go back and use Rust defaults again. This reverts commit 4232c89c9eb18b32a6e87bfbb46c8d5862f52fb3.
2019-08-29third_party: upgrade 'rustls' and related cratesBert Belder
2019-08-29third_party: downgrade 'url' crate to version 1.7.2Bert Belder
2019-08-29build: make it possible to pass arbitrary env vars to rustcBert Belder
2019-08-26Remove flatbuffers (#2818)Ryan Dahl
2019-08-22build: enable 'derive' feature of 'serde' crateBert Belder
2019-08-22third_party: upgrade rust cratesBert Belder
2019-08-22build: add 'cap_lints' flag for rust cratesBert Belder
Using a specialized flag rather than the generic 'args' option makes build_extra/rust/BUILD.gn shorter and more readable.
2019-08-22build: remove per-crate 'treat_warnings_as_errors' gn flagBert Belder
2019-08-22build: support rust crates that generate sources in their build scriptBert Belder
2019-08-02third_party: upgrade rust cratesBert Belder
2019-08-02build: support crate imports using an alias nameBert Belder
A crate can assign an alternative name, different from the crate name, when importing another crate. On the command line this looks like: rustc ... --extern foo_crate=path/to/bar_crate.rlib We need to support this so we can eventually upgrade to rand-0.7.x.
2019-07-08Pass env vars through in build_extra/rust/run.pyBert Belder
This fixes an appveyor issue that arrises when implementing snapshot_creator in Rust.
2019-06-25Port code from Cargo and use for progressRyan Dahl
A lot of its functionality is unused still, but the goal it to slowly migrate logging functionality to it. There is also a useful progress bar which can be ported over later - it depends on this module. https://github.com/rust-lang/cargo/blob/4c1fa54d10f58d69ac9ff55be68e1b1c25ecb816/src/cargo/util/progress.rs
2019-06-25third_party: add rust crate 'termcolor'Bert Belder
2019-06-15third_party: upgrade rust cratesBert Belder
2019-06-09feat: Import maps (#2360)Bartek IwaƄczuk
2019-05-30third_party: upgrade rust cratesBert Belder
2019-05-16third_party: add rust crate 'serde_derive'Bert Belder
2019-05-16third_party: upgrade rust cratesBert Belder
2019-05-16build: add support for rust proc-macro cratesBert Belder
2019-05-16build: forward rustc '--cfg' flags correctlyBert Belder
2019-05-11third_party: upgrade rust cratesBert Belder
2019-05-01fs: add Deno.utime/Deno.utimeSync (#2241)Kevin (Kun) "Kassimo" Qian
2019-04-23third_party: upgrade rust cratesBert Belder
2019-04-17Add cli dependency on tokio-rustlsBert Belder
2019-04-15third_party: upgrade rust cratesBert Belder
2019-04-07Use -O3 instead of -O (#2070)Ryan Dahl
As recommended in https://www.reddit.com/r/rust/comments/balb45/why_is_hypers_max_latency_so_high_in_deno/ekck1ww/
2019-03-31third_party: add rust crate 'clap'Bert Belder
2019-03-29third_party: upgrade rust cratesBert Belder
2019-02-27third_party: upgrade rust cratesBert Belder
2019-02-15remove unnecessary build opt (#1783)Yoshiya Hinosawa
2019-02-12third_party: upgrade rust cratesBert Belder
2019-02-07third_party: add the 'regex' crateBert Belder
2019-02-07Add emojis to permission prompts (#1684)Dmitry Sharshakov
2019-01-26third_party: add the 'integer-atomics' crateBert Belder
2019-01-26third_party: force all crates to use the latest version of rand_coreBert Belder
2019-01-26third_party: upgrade rust cratesBert Belder
2019-01-21chore: update license lines (#1557)Yoshiya Hinosawa
2019-01-14Update to rust 2018 editionAndy Hayden
2019-01-14third_party: upgrade rust crates, now with `--edition 2018` supportBert Belder
2019-01-14third_party: upgrade rust cratesBert Belder
2019-01-14build: bring rustc --cfg flag support backBert Belder
2019-01-07Upgrade crates (#1471)Ryan Dahl
2018-12-23Use flatbuffers from crates.io (#1400)Ryan Dahl
2018-12-19build: build rustls with the same features between gn/ninja and cargoBert Belder
2018-12-13Read version from Cargo.toml (#1267)Goffert van Gool
2018-12-06Process source maps in Rust instead of JS (#1280)Ryan Dahl
- Improves speed and binary size significantly. - Makes deno_last_exception() output a JSON structure. - Isolate::execute and Isolate::event_loop now return structured, mapped JSError objects on errors. - Removes libdeno functions: libdeno.setGlobalErrorHandler() libdeno.setPromiseRejectHandler() libdeno.setPromiseErrorExaminer() In collaboration with Ryan Dahl.