Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 8832992

Browse files
committed
add a parallel rust builder
1 parent 7a2f7a1 commit 8832992

File tree

7 files changed

+453
-32
lines changed

7 files changed

+453
-32
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
*.o
1+
/target
2+
**/*.rs.bk

.travis.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
language: rust
22
rust: nightly
3-
script: bash test.sh
4-
5-
before_install:
6-
- sudo apt-get update -qq
7-
- sudo apt-get install -y debootstrap
3+
script: cargo run

Cargo.lock

+283
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "glacier"
3+
version = "0.1.0"
4+
authors = ["Pietro Albini <[email protected]>"]
5+
edition = "2018"
6+
7+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+
9+
[dependencies]
10+
tempfile = "3.1.0"
11+
rayon = "1.1.0"

0 commit comments

Comments
 (0)