https://github.com/maikklein/compile-test
https://github.com/maikklein/compile-test
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/maikklein/compile-test
- Owner: MaikKlein
- Created: 2018-02-17T09:05:44.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-17T09:07:22.000Z (over 7 years ago)
- Last Synced: 2025-08-12T21:54:01.235Z (2 months ago)
- Language: Rust
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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