diff --git a/Cargo.toml b/Cargo.toml index 40f7ba7..ffa541d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,73 +1,41 @@ [workspace] members = [ ".", - "members/criterion-demo", - "members/cucumber-demo", - "members/panic-calm", - "members/pest-demo", - "members/revsqrt", - "members/serde-json-demo", - "members/shortc", - "members/socker", - "members/tokryon", - "members/tokio-send-sync", - "members/matchmatchmatch", - "members/future_stream", - "members/mpsc", - "members/mpsc-full", - "members/echargs", - "members/claptest", - "members/rest", - "members/rest-queued", - "members/fluent-demo", - "members/onlytoken", - "members/sqlite-demo", - "members/diesel-demo", - "members/ptlog", - "members/hello-world", - "members/statusline", - "members/clap-repl-demo", - "members/arithmetics", - "members/egui-demo", - "members/rfd-demo", - "members/iter-prod", - "members/tpdemo", - "members/graph", - "members/sdl-idiot", -] -default-members = [ - ".", - "members/iter-prod", - "members/rfd-demo", - "members/egui-demo", - "members/arithmetics", - "members/statusline", - "members/ptlog", - "members/diesel-demo", - "members/onlytoken", - "members/fluent-demo", - "members/echargs", - "members/revsqrt", - "members/claptest", - "members/mpsc", - "members/mpsc-full", - "members/criterion-demo", - "members/shortc", - "members/pest-demo", - "members/serde-json-demo", - "members/cucumber-demo", - "members/panic-calm", - "members/socker", - "members/tokryon", - "members/tokio-send-sync", - "members/matchmatchmatch", - "members/future_stream", - "members/rest", - "members/rest-queued", - "members/sqlite-demo", - "members/graph", - "members/sdl-idiot", + "crates/criterion-demo", + "crates/cucumber-demo", + "crates/panic-calm", + "crates/pest-demo", + "crates/revsqrt", + "crates/serde-json-demo", + "crates/shortc", + "crates/socker", + "crates/tokryon", + "crates/tokio-send-sync", + "crates/matchmatchmatch", + "crates/future_stream", + "crates/mpsc", + "crates/mpsc-full", + "crates/echargs", + "crates/claptest", + "crates/rest", + "crates/rest-queued", + "crates/fluent-demo", + "crates/onlytoken", + "crates/sqlite-demo", + "crates/diesel-demo", + "crates/ptlog", + "crates/hello-world", + "crates/statusline", + "crates/clap-repl-demo", + "crates/arithmetics", + "crates/egui-demo", + "crates/rfd-demo", + "crates/iter-prod", + "crates/tpdemo", + "crates/graph", + "crates/sdl-idiot", ] +default-members = ["."] [workspace.dependencies] anyhow = "1.0.79" diff --git a/README.md b/README.md index 5a8c43f..e81f539 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,14 @@ dependencies. Completeness is not a goal of this project. +## Compiling + +Please prefer the use of the [cargo.sh](./cargo.sh) script. + +```bash +$ ./cargo.sh CRATE CARGO_COMMANDS... +``` + ## Highlighted demo crates **Basics** @@ -40,9 +48,17 @@ Completeness is not a goal of this project. ## Warnings -* Some of the crates, especially those related to GUIs, may not work in WSL +* Some of the crates, especially those related to GUIs, may not work in WSL environments. +## Additional dependencies + +If you need to compile the whole workspace: + +```bash +apt install libgtk-3-dev librust-atk-dev -y +``` + ## Rust unsafe Unsafe rust offers many possibilities otherwise locked from rust, which might diff --git a/cargo.sh b/cargo.sh new file mode 100755 index 0000000..97199c4 --- /dev/null +++ b/cargo.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +ROOT=$PWD +CARGO_TARGET_DIR=$PWD/target + +cargo --config "target-dir=\"$ROOT/target\"" $@ diff --git a/cargo_crate.sh b/cargo_crate.sh new file mode 100755 index 0000000..ca63925 --- /dev/null +++ b/cargo_crate.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +CRATE="$1" +ROOT=$PWD +CARGO_TARGET_DIR=$PWD/target + +echo "using crate $CRATE" +cargo --config "target-dir=\"$ROOT/target\"" ${@:2} --manifest-path $ROOT/crates/${CRATE}/Cargo.toml diff --git a/members/arithmetics/Cargo.toml b/crates/arithmetics/Cargo.toml similarity index 100% rename from members/arithmetics/Cargo.toml rename to crates/arithmetics/Cargo.toml diff --git a/members/arithmetics/src/main.rs b/crates/arithmetics/src/main.rs similarity index 100% rename from members/arithmetics/src/main.rs rename to crates/arithmetics/src/main.rs diff --git a/members/clap-repl-demo/Cargo.toml b/crates/clap-repl-demo/Cargo.toml similarity index 100% rename from members/clap-repl-demo/Cargo.toml rename to crates/clap-repl-demo/Cargo.toml diff --git a/members/clap-repl-demo/src/main.rs b/crates/clap-repl-demo/src/main.rs similarity index 100% rename from members/clap-repl-demo/src/main.rs rename to crates/clap-repl-demo/src/main.rs diff --git a/members/claptest/Cargo.toml b/crates/claptest/Cargo.toml similarity index 100% rename from members/claptest/Cargo.toml rename to crates/claptest/Cargo.toml diff --git a/members/claptest/src/main.rs b/crates/claptest/src/main.rs similarity index 100% rename from members/claptest/src/main.rs rename to crates/claptest/src/main.rs diff --git a/members/criterion-demo/Cargo.toml b/crates/criterion-demo/Cargo.toml similarity index 100% rename from members/criterion-demo/Cargo.toml rename to crates/criterion-demo/Cargo.toml diff --git a/members/criterion-demo/benches/my_benchmark.rs b/crates/criterion-demo/benches/my_benchmark.rs similarity index 100% rename from members/criterion-demo/benches/my_benchmark.rs rename to crates/criterion-demo/benches/my_benchmark.rs diff --git a/members/criterion-demo/src/lib.rs b/crates/criterion-demo/src/lib.rs similarity index 100% rename from members/criterion-demo/src/lib.rs rename to crates/criterion-demo/src/lib.rs diff --git a/members/cucumber-demo/Cargo.toml b/crates/cucumber-demo/Cargo.toml similarity index 100% rename from members/cucumber-demo/Cargo.toml rename to crates/cucumber-demo/Cargo.toml diff --git a/members/cucumber-demo/src/lib.rs b/crates/cucumber-demo/src/lib.rs similarity index 100% rename from members/cucumber-demo/src/lib.rs rename to crates/cucumber-demo/src/lib.rs diff --git a/members/cucumber-demo/tests/example.rs b/crates/cucumber-demo/tests/example.rs similarity index 100% rename from members/cucumber-demo/tests/example.rs rename to crates/cucumber-demo/tests/example.rs diff --git a/members/cucumber-demo/tests/features/book/animal.feature b/crates/cucumber-demo/tests/features/book/animal.feature similarity index 100% rename from members/cucumber-demo/tests/features/book/animal.feature rename to crates/cucumber-demo/tests/features/book/animal.feature diff --git a/members/diesel-demo/.env b/crates/diesel-demo/.env similarity index 100% rename from members/diesel-demo/.env rename to crates/diesel-demo/.env diff --git a/members/diesel-demo/Cargo.toml b/crates/diesel-demo/Cargo.toml similarity index 100% rename from members/diesel-demo/Cargo.toml rename to crates/diesel-demo/Cargo.toml diff --git a/members/diesel-demo/README.md b/crates/diesel-demo/README.md similarity index 100% rename from members/diesel-demo/README.md rename to crates/diesel-demo/README.md diff --git a/members/diesel-demo/diesel.toml b/crates/diesel-demo/diesel.toml similarity index 100% rename from members/diesel-demo/diesel.toml rename to crates/diesel-demo/diesel.toml diff --git a/members/diesel-demo/migrations/.keep b/crates/diesel-demo/migrations/.keep similarity index 100% rename from members/diesel-demo/migrations/.keep rename to crates/diesel-demo/migrations/.keep diff --git a/members/diesel-demo/migrations/2024-06-27-090844_create_table/down.sql b/crates/diesel-demo/migrations/2024-06-27-090844_create_table/down.sql similarity index 100% rename from members/diesel-demo/migrations/2024-06-27-090844_create_table/down.sql rename to crates/diesel-demo/migrations/2024-06-27-090844_create_table/down.sql diff --git a/members/diesel-demo/migrations/2024-06-27-090844_create_table/up.sql b/crates/diesel-demo/migrations/2024-06-27-090844_create_table/up.sql similarity index 100% rename from members/diesel-demo/migrations/2024-06-27-090844_create_table/up.sql rename to crates/diesel-demo/migrations/2024-06-27-090844_create_table/up.sql diff --git a/members/diesel-demo/src/cli.rs b/crates/diesel-demo/src/cli.rs similarity index 100% rename from members/diesel-demo/src/cli.rs rename to crates/diesel-demo/src/cli.rs diff --git a/members/diesel-demo/src/lib.rs b/crates/diesel-demo/src/lib.rs similarity index 100% rename from members/diesel-demo/src/lib.rs rename to crates/diesel-demo/src/lib.rs diff --git a/members/diesel-demo/src/main.rs b/crates/diesel-demo/src/main.rs similarity index 100% rename from members/diesel-demo/src/main.rs rename to crates/diesel-demo/src/main.rs diff --git a/members/diesel-demo/src/models.rs b/crates/diesel-demo/src/models.rs similarity index 100% rename from members/diesel-demo/src/models.rs rename to crates/diesel-demo/src/models.rs diff --git a/members/diesel-demo/src/schema.rs b/crates/diesel-demo/src/schema.rs similarity index 100% rename from members/diesel-demo/src/schema.rs rename to crates/diesel-demo/src/schema.rs diff --git a/members/echargs/Cargo.toml b/crates/echargs/Cargo.toml similarity index 100% rename from members/echargs/Cargo.toml rename to crates/echargs/Cargo.toml diff --git a/members/echargs/src/main.rs b/crates/echargs/src/main.rs similarity index 100% rename from members/echargs/src/main.rs rename to crates/echargs/src/main.rs diff --git a/members/egui-demo/Cargo.toml b/crates/egui-demo/Cargo.toml similarity index 100% rename from members/egui-demo/Cargo.toml rename to crates/egui-demo/Cargo.toml diff --git a/members/egui-demo/src/main.rs b/crates/egui-demo/src/main.rs similarity index 100% rename from members/egui-demo/src/main.rs rename to crates/egui-demo/src/main.rs diff --git a/members/fluent-demo/Cargo.toml b/crates/fluent-demo/Cargo.toml similarity index 100% rename from members/fluent-demo/Cargo.toml rename to crates/fluent-demo/Cargo.toml diff --git a/members/fluent-demo/src/main.rs b/crates/fluent-demo/src/main.rs similarity index 100% rename from members/fluent-demo/src/main.rs rename to crates/fluent-demo/src/main.rs diff --git a/members/future_stream/Cargo.toml b/crates/future_stream/Cargo.toml similarity index 100% rename from members/future_stream/Cargo.toml rename to crates/future_stream/Cargo.toml diff --git a/members/future_stream/src/main.rs b/crates/future_stream/src/main.rs similarity index 100% rename from members/future_stream/src/main.rs rename to crates/future_stream/src/main.rs diff --git a/members/graph/Cargo.toml b/crates/graph/Cargo.toml similarity index 100% rename from members/graph/Cargo.toml rename to crates/graph/Cargo.toml diff --git a/members/graph/src/main.rs b/crates/graph/src/main.rs similarity index 100% rename from members/graph/src/main.rs rename to crates/graph/src/main.rs diff --git a/members/hello-world/Cargo.toml b/crates/hello-world/Cargo.toml similarity index 100% rename from members/hello-world/Cargo.toml rename to crates/hello-world/Cargo.toml diff --git a/members/hello-world/src/main.rs b/crates/hello-world/src/main.rs similarity index 100% rename from members/hello-world/src/main.rs rename to crates/hello-world/src/main.rs diff --git a/members/iter-prod/Cargo.toml b/crates/iter-prod/Cargo.toml similarity index 100% rename from members/iter-prod/Cargo.toml rename to crates/iter-prod/Cargo.toml diff --git a/members/iter-prod/src/main.rs b/crates/iter-prod/src/main.rs similarity index 100% rename from members/iter-prod/src/main.rs rename to crates/iter-prod/src/main.rs diff --git a/members/matchmatchmatch/Cargo.toml b/crates/matchmatchmatch/Cargo.toml similarity index 100% rename from members/matchmatchmatch/Cargo.toml rename to crates/matchmatchmatch/Cargo.toml diff --git a/members/matchmatchmatch/src/main.rs b/crates/matchmatchmatch/src/main.rs similarity index 100% rename from members/matchmatchmatch/src/main.rs rename to crates/matchmatchmatch/src/main.rs diff --git a/members/mpsc-full/Cargo.toml b/crates/mpsc-full/Cargo.toml similarity index 100% rename from members/mpsc-full/Cargo.toml rename to crates/mpsc-full/Cargo.toml diff --git a/members/mpsc-full/src/main.rs b/crates/mpsc-full/src/main.rs similarity index 100% rename from members/mpsc-full/src/main.rs rename to crates/mpsc-full/src/main.rs diff --git a/members/mpsc/Cargo.toml b/crates/mpsc/Cargo.toml similarity index 100% rename from members/mpsc/Cargo.toml rename to crates/mpsc/Cargo.toml diff --git a/members/mpsc/src/main.rs b/crates/mpsc/src/main.rs similarity index 100% rename from members/mpsc/src/main.rs rename to crates/mpsc/src/main.rs diff --git a/members/onlytoken/Cargo.toml b/crates/onlytoken/Cargo.toml similarity index 100% rename from members/onlytoken/Cargo.toml rename to crates/onlytoken/Cargo.toml diff --git a/members/onlytoken/src/main.rs b/crates/onlytoken/src/main.rs similarity index 100% rename from members/onlytoken/src/main.rs rename to crates/onlytoken/src/main.rs diff --git a/members/panic-calm/Cargo.toml b/crates/panic-calm/Cargo.toml similarity index 100% rename from members/panic-calm/Cargo.toml rename to crates/panic-calm/Cargo.toml diff --git a/members/panic-calm/src/main.rs b/crates/panic-calm/src/main.rs similarity index 100% rename from members/panic-calm/src/main.rs rename to crates/panic-calm/src/main.rs diff --git a/members/pest-demo/Cargo.toml b/crates/pest-demo/Cargo.toml similarity index 100% rename from members/pest-demo/Cargo.toml rename to crates/pest-demo/Cargo.toml diff --git a/members/pest-demo/data/example.csv b/crates/pest-demo/data/example.csv similarity index 100% rename from members/pest-demo/data/example.csv rename to crates/pest-demo/data/example.csv diff --git a/members/pest-demo/src/csv.pest b/crates/pest-demo/src/csv.pest similarity index 100% rename from members/pest-demo/src/csv.pest rename to crates/pest-demo/src/csv.pest diff --git a/members/pest-demo/src/main.rs b/crates/pest-demo/src/main.rs similarity index 100% rename from members/pest-demo/src/main.rs rename to crates/pest-demo/src/main.rs diff --git a/members/ptlog/Cargo.toml b/crates/ptlog/Cargo.toml similarity index 100% rename from members/ptlog/Cargo.toml rename to crates/ptlog/Cargo.toml diff --git a/members/ptlog/src/main.rs b/crates/ptlog/src/main.rs similarity index 100% rename from members/ptlog/src/main.rs rename to crates/ptlog/src/main.rs diff --git a/members/rest-queued/Cargo.toml b/crates/rest-queued/Cargo.toml similarity index 100% rename from members/rest-queued/Cargo.toml rename to crates/rest-queued/Cargo.toml diff --git a/members/rest-queued/src/client.rs b/crates/rest-queued/src/client.rs similarity index 100% rename from members/rest-queued/src/client.rs rename to crates/rest-queued/src/client.rs diff --git a/members/rest-queued/src/main.rs b/crates/rest-queued/src/main.rs similarity index 100% rename from members/rest-queued/src/main.rs rename to crates/rest-queued/src/main.rs diff --git a/members/rest-queued/src/routes.rs b/crates/rest-queued/src/routes.rs similarity index 100% rename from members/rest-queued/src/routes.rs rename to crates/rest-queued/src/routes.rs diff --git a/members/rest-queued/src/store.rs b/crates/rest-queued/src/store.rs similarity index 100% rename from members/rest-queued/src/store.rs rename to crates/rest-queued/src/store.rs diff --git a/members/rest/Cargo.toml b/crates/rest/Cargo.toml similarity index 100% rename from members/rest/Cargo.toml rename to crates/rest/Cargo.toml diff --git a/members/rest/src/main.rs b/crates/rest/src/main.rs similarity index 100% rename from members/rest/src/main.rs rename to crates/rest/src/main.rs diff --git a/members/rest/src/routes.rs b/crates/rest/src/routes.rs similarity index 100% rename from members/rest/src/routes.rs rename to crates/rest/src/routes.rs diff --git a/members/rest/src/store.rs b/crates/rest/src/store.rs similarity index 100% rename from members/rest/src/store.rs rename to crates/rest/src/store.rs diff --git a/members/revsqrt/Cargo.toml b/crates/revsqrt/Cargo.toml similarity index 100% rename from members/revsqrt/Cargo.toml rename to crates/revsqrt/Cargo.toml diff --git a/members/revsqrt/benches/rsqrt-bench.rs b/crates/revsqrt/benches/rsqrt-bench.rs similarity index 100% rename from members/revsqrt/benches/rsqrt-bench.rs rename to crates/revsqrt/benches/rsqrt-bench.rs diff --git a/members/revsqrt/src/lib.rs b/crates/revsqrt/src/lib.rs similarity index 100% rename from members/revsqrt/src/lib.rs rename to crates/revsqrt/src/lib.rs diff --git a/members/revsqrt/src/main.rs b/crates/revsqrt/src/main.rs similarity index 100% rename from members/revsqrt/src/main.rs rename to crates/revsqrt/src/main.rs diff --git a/members/revsqrt/tests/basic-revsqrt.rs b/crates/revsqrt/tests/basic-revsqrt.rs similarity index 100% rename from members/revsqrt/tests/basic-revsqrt.rs rename to crates/revsqrt/tests/basic-revsqrt.rs diff --git a/members/revsqrt/tests/features/book/revsqrt-demo.feature b/crates/revsqrt/tests/features/book/revsqrt-demo.feature similarity index 100% rename from members/revsqrt/tests/features/book/revsqrt-demo.feature rename to crates/revsqrt/tests/features/book/revsqrt-demo.feature diff --git a/members/revsqrt/tests/features/book/revsqrt.feature b/crates/revsqrt/tests/features/book/revsqrt.feature similarity index 100% rename from members/revsqrt/tests/features/book/revsqrt.feature rename to crates/revsqrt/tests/features/book/revsqrt.feature diff --git a/members/revsqrt/tests/revsqrt-demo.rs b/crates/revsqrt/tests/revsqrt-demo.rs similarity index 100% rename from members/revsqrt/tests/revsqrt-demo.rs rename to crates/revsqrt/tests/revsqrt-demo.rs diff --git a/members/revsqrt/tests/revsqrt.rs b/crates/revsqrt/tests/revsqrt.rs similarity index 100% rename from members/revsqrt/tests/revsqrt.rs rename to crates/revsqrt/tests/revsqrt.rs diff --git a/members/rfd-demo/Cargo.toml b/crates/rfd-demo/Cargo.toml similarity index 100% rename from members/rfd-demo/Cargo.toml rename to crates/rfd-demo/Cargo.toml diff --git a/members/rfd-demo/src/main.rs b/crates/rfd-demo/src/main.rs similarity index 100% rename from members/rfd-demo/src/main.rs rename to crates/rfd-demo/src/main.rs diff --git a/members/sdl-idiot/Cargo.toml b/crates/sdl-idiot/Cargo.toml similarity index 100% rename from members/sdl-idiot/Cargo.toml rename to crates/sdl-idiot/Cargo.toml diff --git a/members/sdl-idiot/src/main.rs b/crates/sdl-idiot/src/main.rs similarity index 100% rename from members/sdl-idiot/src/main.rs rename to crates/sdl-idiot/src/main.rs diff --git a/members/serde-json-demo/.gitignore b/crates/serde-json-demo/.gitignore similarity index 100% rename from members/serde-json-demo/.gitignore rename to crates/serde-json-demo/.gitignore diff --git a/members/serde-json-demo/Cargo.toml b/crates/serde-json-demo/Cargo.toml similarity index 100% rename from members/serde-json-demo/Cargo.toml rename to crates/serde-json-demo/Cargo.toml diff --git a/members/serde-json-demo/src/main.rs b/crates/serde-json-demo/src/main.rs similarity index 100% rename from members/serde-json-demo/src/main.rs rename to crates/serde-json-demo/src/main.rs diff --git a/members/shortc/Cargo.toml b/crates/shortc/Cargo.toml similarity index 100% rename from members/shortc/Cargo.toml rename to crates/shortc/Cargo.toml diff --git a/members/shortc/src/main.rs b/crates/shortc/src/main.rs similarity index 100% rename from members/shortc/src/main.rs rename to crates/shortc/src/main.rs diff --git a/members/socker/Cargo.toml b/crates/socker/Cargo.toml similarity index 100% rename from members/socker/Cargo.toml rename to crates/socker/Cargo.toml diff --git a/members/socker/src/main.rs b/crates/socker/src/main.rs similarity index 100% rename from members/socker/src/main.rs rename to crates/socker/src/main.rs diff --git a/members/socker/src/pool.rs b/crates/socker/src/pool.rs similarity index 100% rename from members/socker/src/pool.rs rename to crates/socker/src/pool.rs diff --git a/members/sqlite-demo/Cargo.toml b/crates/sqlite-demo/Cargo.toml similarity index 100% rename from members/sqlite-demo/Cargo.toml rename to crates/sqlite-demo/Cargo.toml diff --git a/members/sqlite-demo/src/db.rs b/crates/sqlite-demo/src/db.rs similarity index 100% rename from members/sqlite-demo/src/db.rs rename to crates/sqlite-demo/src/db.rs diff --git a/members/sqlite-demo/src/main.rs b/crates/sqlite-demo/src/main.rs similarity index 100% rename from members/sqlite-demo/src/main.rs rename to crates/sqlite-demo/src/main.rs diff --git a/members/statusline/Cargo.toml b/crates/statusline/Cargo.toml similarity index 100% rename from members/statusline/Cargo.toml rename to crates/statusline/Cargo.toml diff --git a/members/statusline/src/main.rs b/crates/statusline/src/main.rs similarity index 100% rename from members/statusline/src/main.rs rename to crates/statusline/src/main.rs diff --git a/members/tokio-send-sync/Cargo.toml b/crates/tokio-send-sync/Cargo.toml similarity index 100% rename from members/tokio-send-sync/Cargo.toml rename to crates/tokio-send-sync/Cargo.toml diff --git a/members/tokio-send-sync/src/main.rs b/crates/tokio-send-sync/src/main.rs similarity index 100% rename from members/tokio-send-sync/src/main.rs rename to crates/tokio-send-sync/src/main.rs diff --git a/members/tokryon/Cargo.toml b/crates/tokryon/Cargo.toml similarity index 100% rename from members/tokryon/Cargo.toml rename to crates/tokryon/Cargo.toml diff --git a/members/tokryon/src/main.rs b/crates/tokryon/src/main.rs similarity index 100% rename from members/tokryon/src/main.rs rename to crates/tokryon/src/main.rs diff --git a/members/tpdemo/Cargo.toml b/crates/tpdemo/Cargo.toml similarity index 100% rename from members/tpdemo/Cargo.toml rename to crates/tpdemo/Cargo.toml diff --git a/members/tpdemo/src/main.rs b/crates/tpdemo/src/main.rs similarity index 100% rename from members/tpdemo/src/main.rs rename to crates/tpdemo/src/main.rs diff --git a/for_each_crate.sh b/for_each_crate.sh new file mode 100755 index 0000000..f51dde4 --- /dev/null +++ b/for_each_crate.sh @@ -0,0 +1,11 @@ +#!/bin/bash +root=$PWD +DIRS=$(ls ./crates) + +echo $DIRS + +for dir in $DIRS; do + cd crates/$dir; + eval "$@"; + cd $root; +done; diff --git a/for_each_crate_cargo.sh b/for_each_crate_cargo.sh new file mode 100755 index 0000000..d43690f --- /dev/null +++ b/for_each_crate_cargo.sh @@ -0,0 +1,11 @@ +#!/bin/bash +ROOT=$PWD +DIRS=$(ls ./crates) + +echo $DIRS + +for dir in $DIRS; do + cd crates/$dir; + eval "bash $ROOT/cargo.sh $@"; + cd $ROOT; +done; diff --git a/members/serde-json-demo/Cargo.lock b/members/serde-json-demo/Cargo.lock deleted file mode 100644 index cf81dc3..0000000 --- a/members/serde-json-demo/Cargo.lock +++ /dev/null @@ -1,369 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "android-tzdata" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" - -[[package]] -name = "android_system_properties" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" -dependencies = [ - "libc", -] - -[[package]] -name = "autocfg" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" - -[[package]] -name = "bumpalo" -version = "3.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" - -[[package]] -name = "cc" -version = "1.0.79" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" - -[[package]] -name = "cfg-if" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" - -[[package]] -name = "chrono" -version = "0.4.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5" -dependencies = [ - "android-tzdata", - "iana-time-zone", - "js-sys", - "num-traits", - "serde", - "time", - "wasm-bindgen", - "winapi", -] - -[[package]] -name = "core-foundation-sys" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" - -[[package]] -name = "iana-time-zone" -version = "0.1.57" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" -dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "wasm-bindgen", - "windows", -] - -[[package]] -name = "iana-time-zone-haiku" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" -dependencies = [ - "cc", -] - -[[package]] -name = "itoa" -version = "1.0.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a" - -[[package]] -name = "js-sys" -version = "0.3.64" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" -dependencies = [ - "wasm-bindgen", -] - -[[package]] -name = "libc" -version = "0.2.147" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" - -[[package]] -name = "log" -version = "0.4.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" - -[[package]] -name = "num-traits" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" -dependencies = [ - "autocfg", -] - -[[package]] -name = "once_cell" -version = "1.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" - -[[package]] -name = "proc-macro2" -version = "1.0.64" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "quote" -version = "1.0.29" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "ryu" -version = "1.0.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9" - -[[package]] -name = "serde" -version = "1.0.171" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde-json-demo" -version = "0.1.0" -dependencies = [ - "chrono", - "serde", - "serde_json", -] - -[[package]] -name = "serde_derive" -version = "1.0.171" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "serde_json" -version = "1.0.102" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5062a995d481b2308b6064e9af76011f2921c35f97b0468811ed9f6cd91dfed" -dependencies = [ - "itoa", - "ryu", - "serde", -] - -[[package]] -name = "syn" -version = "2.0.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "time" -version = "0.1.45" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" -dependencies = [ - "libc", - "wasi", - "winapi", -] - -[[package]] -name = "unicode-ident" -version = "1.0.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73" - -[[package]] -name = "wasi" -version = "0.10.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" - -[[package]] -name = "wasm-bindgen" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" -dependencies = [ - "cfg-if", - "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" -dependencies = [ - "bumpalo", - "log", - "once_cell", - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" -dependencies = [ - "quote", - "wasm-bindgen-macro-support", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" -dependencies = [ - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-backend", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.87" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" - -[[package]] -name = "winapi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", -] - -[[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" - -[[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - -[[package]] -name = "windows" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" -dependencies = [ - "windows-targets", -] - -[[package]] -name = "windows-targets" -version = "0.48.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" -dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", -] - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" - -[[package]] -name = "windows_i686_gnu" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" - -[[package]] -name = "windows_i686_msvc" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" diff --git a/rs-unsafe b/rs-unsafe deleted file mode 160000 index 7c19e55..0000000 --- a/rs-unsafe +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 7c19e55d975dae44cec60d15bb262b668cab6ec3