2025-07-21 04:18:49 +00:00
|
|
|
# run all Cargo examples, as described here:
|
|
|
|
#
|
|
|
|
# Karol Kuczmarski. "Add examples to your Rust libraries"
|
|
|
|
# http://xion.io/post/code/rust-examples.html
|
|
|
|
#
|
|
|
|
# you should invoke this script by calling `sh` or another interpreter, rather
|
|
|
|
# than calling `souce`, to ensure that the script can find the manifest file for
|
|
|
|
# the application prototype
|
|
|
|
|
|
|
|
# find the manifest file for the application prototype
|
2025-08-11 03:33:19 +00:00
|
|
|
MANIFEST="$(dirname -- $0)/../app-proto/Cargo.toml"
|
2025-07-21 04:18:49 +00:00
|
|
|
|
|
|
|
# set up the command that runs each example
|
|
|
|
RUN_EXAMPLE="cargo run --manifest-path $MANIFEST --example"
|
|
|
|
|
|
|
|
# run the examples
|
|
|
|
$RUN_EXAMPLE irisawa-hexlet; echo
|
|
|
|
$RUN_EXAMPLE three-spheres; echo
|
|
|
|
$RUN_EXAMPLE point-on-sphere; echo
|
|
|
|
$RUN_EXAMPLE kaleidocycle
|