An open API service indexing awesome lists of open source software.

https://github.com/maikklein/compile-test


https://github.com/maikklein/compile-test

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Compile time experiments

Baseline compile with an empty main is `0.3s`.

```
extern crate lib;
fn main() {
lib::test("somepath");
}
```

Incremental build in 2.38s

```
extern crate lib;
fn main() {
lib::test1("somepath");
}
```

Incremental build in 0.31s

```
extern crate lib;
fn main() {
lib::test2("somepath");
}
```

Incremental build in 0.31s