Add the rest of the Rust projects to the build tool #53
|
@ -400,6 +400,13 @@ dependencies = [
|
|||
"rustc_version",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "flow"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"thiserror",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "fluent"
|
||||
version = "0.16.0"
|
||||
|
|
|
@ -9,4 +9,5 @@ members = [
|
|||
"screenplay",
|
||||
"emseries",
|
||||
"coordinates",
|
||||
"flow",
|
||||
]
|
||||
|
|
6
Makefile
6
Makefile
|
@ -11,12 +11,6 @@ changeset-dev:
|
|||
changeset-test:
|
||||
cd changeset && make test
|
||||
|
||||
flow-dev:
|
||||
cd flow && make dev
|
||||
|
||||
flow-test:
|
||||
cd flow && make test
|
||||
|
||||
kifu-core/dev:
|
||||
cd kifu/core && make test
|
||||
|
||||
|
|
2
build.sh
2
build.sh
|
@ -2,7 +2,7 @@
|
|||
|
||||
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() {
|
||||
local CMD=$1
|
||||
|
|
Loading…
Reference in New Issue