Skip to content

Commit

Permalink
five easy pieces
Browse files Browse the repository at this point in the history
  • Loading branch information
gterzian committed Apr 26, 2020
0 parents commit c93950c
Show file tree
Hide file tree
Showing 6 changed files with 719 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
160 changes: 160 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "five_easy_pieces"
description = "Five easy pieces on Rust concurrency"
repository = "https://github.com/servo/rust-mozjs"
version = "0.0.0"
authors = ["Gregory Terzian"]
license = "MPL-2.0"

[dependencies]
crossbeam-channel = "0.4"
rayon = "1"
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#### Rust concurrency: five easy pieces.

Code examples for https://medium.com/@polyglot_factotum/rust-concurrency-five-easy-pieces-871f1c62906a
1 change: 1 addition & 0 deletions rust-toolchain
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nightly-2020-04-08
Loading

0 comments on commit c93950c

Please sign in to comment.