Cache multiple target directories from 'target-dir'

This commit is contained in:
Nick Mosher
2021-07-16 16:58:46 -04:00
committed by Arpad Borsos
parent fa61956921
commit 260a713186
15 changed files with 195 additions and 41 deletions

View File

@@ -0,0 +1,14 @@
[package]
name = "wasm-one"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = "0.11.0"
async-std = "1"
tracing = "0.1"
tracing-futures = "0.2"
serde = "1"
serde_json = "1"

View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

View File

@@ -0,0 +1,9 @@
[package]
name = "wasm-two"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "3"

View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}