mirror of
https://github.com/Swatinem/rust-cache
synced 2025-08-14 00:51:18 +00:00
Cache multiple target directories from 'target-dir'
This commit is contained in:
parent
81d053bdb0
commit
bd480418f0
11 changed files with 648 additions and 17 deletions
2
wasm-workspace/.cargo/config.toml
Normal file
2
wasm-workspace/.cargo/config.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
[build]
|
||||
target = "wasm32-unknown-unknown"
|
1
wasm-workspace/.gitignore
vendored
Normal file
1
wasm-workspace/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
Cargo.lock
|
18
wasm-workspace/Cargo.toml
Normal file
18
wasm-workspace/Cargo.toml
Normal file
|
@ -0,0 +1,18 @@
|
|||
[workspace]
|
||||
members = ["."]
|
||||
|
||||
[package]
|
||||
name = "wasm-workspace"
|
||||
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"
|
||||
toml = ""
|
3
wasm-workspace/src/main.rs
Normal file
3
wasm-workspace/src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue