From b6b371d7d45a8eba2558837bc044d45c0c382f02 Mon Sep 17 00:00:00 2001 From: Savanni D'Gerinel Date: Mon, 7 Aug 2023 16:11:35 -0400 Subject: [PATCH] Add changeset --- Cargo.lock | 7 +++++++ Cargo.toml | 1 + Makefile | 6 ------ build.sh | 2 +- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2dbab54..5a87cd6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -184,6 +184,13 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" +[[package]] +name = "changeset" +version = "0.1.0" +dependencies = [ + "uuid", +] + [[package]] name = "chrono" version = "0.4.26" diff --git a/Cargo.toml b/Cargo.toml index c4599af..edfa1a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,4 +11,5 @@ members = [ "coordinates", "flow", "sgf", + "changeset", ] diff --git a/Makefile b/Makefile index 562cab0..461cd70 100644 --- a/Makefile +++ b/Makefile @@ -34,9 +34,3 @@ kifu-pwa/dev: kifu-pwa/server: pushd kifu/pwa && make server - -sgf/test: - pushd sgf && make test - -sgf/test-oneshot: - pushd sgf && make test-oneshot diff --git a/build.sh b/build.sh index 2a781a0..39d8763 100755 --- a/build.sh +++ b/build.sh @@ -2,7 +2,7 @@ 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() { local CMD=$1