// FIXME: Temporary fix for https://github.com/rust-lang/cargo/issues/3005
# FIXME(#49246): Remove the `sed` below.
| This is still a proof of concept. I don't think it has all the corner cases correct, but it demonstrates what's possible. |
| <html> | |
| <head> | |
| <title>Cargo Build Timings — cargo 0.41.0</title> | |
| <meta charset="utf-8"> | |
| <style type="text/css"> | |
| html { | |
| font-family: sans-serif; | |
| } |
| from __future__ import print_function | |
| import os | |
| import subprocess | |
| import time | |
| import json | |
| import csv | |
| from threading import Timer | |
| import pandas as pd |
| libc | lib | |
|---|---|---|
| libc | libr | |
| libc | libs | |
| libc | rlibc | |
| serde | serde1 | |
| rand | rad | |
| log | clog | |
| log | cog | |
| log | elog | |
| log | loc |
This document has been superseded by the one maintained by chriskrycho.
| // AVLTree /////////////////////////////////////////////////////////////////// | |
| // This file is originally from the Concentré XML project (version 0.2.1) | |
| // Licensed under GPL and LGPL | |
| // | |
| // Modified by Jeremy Stephens. | |
| // and by Jacob Finkelman. | |
| // Pass in the attribute you want to use for comparing | |
| function AVLTree(n, attr) { | |
| return new AVLTree.prototype.init(n, attr); |