aboutsummaryrefslogtreecommitdiffstats
path: root/components/profile/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Remove servo feature from servo_configXidorn Quan2017-04-071-1/+1
|
* Kill the plugins crate and its clippy supportAnthony Ramine2017-02-211-1/+0
| | | | | | Sometimes clippy gets outdated by months, and its current support setup means that each Servo component need to opt into it by depending on the plugins crate manually, and not all components do that.
* Update serde to 0.9 (fixes #15325)Anthony Ramine2017-02-181-4/+4
|
* Update gamma-lut, heartbeats-simple, hyper, mac, truetype, unicode-bidiMatt Brubeck2017-02-171-1/+1
|
* Update ipc-channel to 0.6.3Anthony Ramine2017-02-161-1/+1
|
* Update regex.Ms2ger2017-01-161-1/+1
|
* Removed util.Alan Jeffrey2016-12-141-1/+1
|
* Update to Rust 1.14.0-nightly (19ac57926 2016-10-08)Anthony Ramine2016-10-091-1/+1
| | | | A cargo bump and a switch to serde_derive is needed to do this rustup.
* Update serde to 0.8 (fixes #12659)Anthony Ramine2016-08-121-4/+4
|
* Update cargo.lock for wr2, pin ipc-channel.Glenn Watson2016-08-031-1/+1
|
* Update Rust to 1.12.0-nightly (9316ae515 2016-07-24)Eduard Burtescu2016-07-261-2/+2
|
* All our Cargo.toml files should contain an MPL-2.0 license field.Alan Jeffrey2016-07-141-0/+1
|
* Update Rust to 1.11.0-nightly (ad7fe6521 2016-06-23)Anthony Ramine2016-06-271-2/+2
| | | | | I also properly bump any dependency related to the serde_macros removal from webrender_traits
* Make it possible to build the style_traits crate with a stable compiler.Simon Sapin2016-06-221-1/+1
| | | | Testing this on CI to make sure we don’t regress it is blocked on #11806
* Update heartbeats-simple to 0.3.0Connor Imes2016-06-201-1/+1
|
* Do not use libc in profile on WindowsAnthony Ramine2016-05-171-1/+3
|
* Add a method for dumping self-contained HTML timeline profilesNick Fitzgerald2016-04-271-0/+3
| | | | | | | This commit adds the `--profiler-trace-path` flag. When combined with `-p` to enable profiling, it dumps a profile as a self-contained HTML file to the given path. The profile visualizes the traced operations as a gant-chart style timeline.
* Simplify TOML syntaxSimon Sapin2016-04-261-17/+8
| | | | | | | | * Sections like `[dependencies.foo]` can be entries in a `[dependencies]` section with the `{key = value}` syntax. * Per-target dependencies can be expressed with more general `cfg(…)` conditions instead of exact target triples: https://github.com/rust-lang/cargo/pull/2328
* Update log to 0.3.5Anthony Ramine2016-03-161-1/+1
|
* Heartbeats now on crates.io.Connor Imes2016-03-091-3/+1
| | | | | Updates to energymon interface for energy profiling. Profiling script for Android.
* Bump regex and regex-syntaxAnthony Ramine2016-03-051-1/+1
|
* Indicate components should not be published to crates.io.Corey Farwell2016-03-031-0/+1
| | | | http://doc.crates.io/manifest.html#the-publish--field-optional
* Upgrade to rustc 1.6.0-nightly (d5fde83ae 2015-11-12)Manish Goregaokar2015-11-271-1/+1
| | | | … and libc 0.2 and many other dependencies
* Update `ipc-channel` to pick up the improved error reporting.Patrick Walton2015-11-231-1/+1
| | | | Intended to help diagnose intermittent failures.
* sorted the extern crate, mod & use declarationsRavi Shankar2015-09-241-0/+3
|
* Integrate with simple HeartbeatsConnor Imes2015-08-221-0/+3
|
* profile: Make the time and memory profilers run over IPC.Patrick Walton2015-07-241-0/+3
| | | | | Uses the `Router` abstraction inside `ipc-channel` to avoid spawning new threads.
* Replace astersisks with appropriate versions in depsBogdan Cuza2015-07-201-2/+2
|
* Use the correct log crate and setup env_logger in main.Eduard Burtescu2015-06-061-0/+1
|
* Switch task_info to use modern Cargo tools.Jack Moffitt2015-05-291-3/+6
|
* Add a `profile_traits` crate to reduce compile times.Nicholas Nethercote2015-04-301-1/+3
| | | | | | | | | | A rebuild after touching components/profile/mem.rs now takes 48 seconds (and only rebuilds `profile` and `servo`) which is much lower than it used to be. In comparison, a rebuild after touching components/profile_traits/mem.rs takes 294 seconds and rebuilds many more crates. This change also removes some unnecessary crate dependencies in `net` and `net_traits`.
* Move profiler code from `util` into a new crate `profile`.Nicholas Nethercote2015-03-241-0/+20
- Most of util::memory has been moved into profile::mem, though the `SizeOf` trait and related things remain in util::memory. The `SystemMemoryReporter` code is now in a submodule profile::mem::system_reporter. - util::time has been moved entirely into profile::time.