Add the rest of the Rust projects to the build tool #53
|
@ -400,6 +400,13 @@ dependencies = [
|
||||||
"rustc_version",
|
"rustc_version",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "flow"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"thiserror",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "fluent"
|
name = "fluent"
|
||||||
version = "0.16.0"
|
version = "0.16.0"
|
||||||
|
|
|
@ -9,4 +9,5 @@ members = [
|
||||||
"screenplay",
|
"screenplay",
|
||||||
"emseries",
|
"emseries",
|
||||||
"coordinates",
|
"coordinates",
|
||||||
|
"flow",
|
||||||
]
|
]
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -11,12 +11,6 @@ changeset-dev:
|
||||||
changeset-test:
|
changeset-test:
|
||||||
cd changeset && make test
|
cd changeset && make test
|
||||||
|
|
||||||
flow-dev:
|
|
||||||
cd flow && make dev
|
|
||||||
|
|
||||||
flow-test:
|
|
||||||
cd flow && make test
|
|
||||||
|
|
||||||
kifu-core/dev:
|
kifu-core/dev:
|
||||||
cd kifu/core && make test
|
cd kifu/core && make test
|
||||||
|
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
RUST_ALL_TARGETS="dashboard ifc memorycache geo-types fluent-ergonomics cyberpunk-splash screenplay emseries coordinates"
|
RUST_ALL_TARGETS="dashboard ifc memorycache geo-types fluent-ergonomics cyberpunk-splash screenplay emseries coordinates flow"
|
||||||
|
|
||||||
build_rust_targets() {
|
build_rust_targets() {
|
||||||
local CMD=$1
|
local CMD=$1
|
||||||
|
|
Loading…
Reference in New Issue