Add the rest of the Rust projects to the build tool #53
|
@ -184,6 +184,13 @@ version = "1.0.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "changeset"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"uuid",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "chrono"
|
name = "chrono"
|
||||||
version = "0.4.26"
|
version = "0.4.26"
|
||||||
|
|
|
@ -11,4 +11,5 @@ members = [
|
||||||
"coordinates",
|
"coordinates",
|
||||||
"flow",
|
"flow",
|
||||||
"sgf",
|
"sgf",
|
||||||
|
"changeset",
|
||||||
]
|
]
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -34,9 +34,3 @@ kifu-pwa/dev:
|
||||||
|
|
||||||
kifu-pwa/server:
|
kifu-pwa/server:
|
||||||
pushd kifu/pwa && make server
|
pushd kifu/pwa && make server
|
||||||
|
|
||||||
sgf/test:
|
|
||||||
pushd sgf && make test
|
|
||||||
|
|
||||||
sgf/test-oneshot:
|
|
||||||
pushd sgf && make test-oneshot
|
|
||||||
|
|
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 flow sgf"
|
RUST_ALL_TARGETS="dashboard ifc memorycache geo-types fluent-ergonomics cyberpunk-splash screenplay emseries coordinates flow sgf changeset"
|
||||||
|
|
||||||
build_rust_targets() {
|
build_rust_targets() {
|
||||||
local CMD=$1
|
local CMD=$1
|
||||||
|
|
Loading…
Reference in New Issue