Make schema crate publishable (#1569)

Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com>
This commit is contained in:
Zeke Foppa
2024-08-07 10:52:17 -07:00
committed by GitHub
parent d6a215d0a6
commit a2f812bf8d
3 changed files with 3 additions and 1 deletions
+2
View File
@@ -2,6 +2,8 @@
name = "spacetimedb-schema"
version.workspace = true
edition.workspace = true
license-file = "LICENSE"
description = "Schema library for SpacetimeDB"
rust-version.workspace = true
[dependencies]
View File
+1 -1
View File
@@ -23,7 +23,7 @@ if [ $DRY_RUN != 1 ] ; then
fi
BASEDIR=$(pwd)
declare -a CRATES=("metrics" "primitives" "bindings-macro" "bindings-sys" "data-structures" "sats" "lib" "bindings" "table" "vm" "client-api-messages" "commitlog" "durability" "fs-utils" "snapshot" "core" "client-api" "standalone" "cli" "sdk")
declare -a CRATES=("metrics" "primitives" "bindings-macro" "bindings-sys" "data-structures" "sats" "lib" "schema" "bindings" "table" "vm" "client-api-messages" "commitlog" "durability" "fs-utils" "snapshot" "core" "client-api" "standalone" "cli" "sdk")
for crate in "${CRATES[@]}" ; do
if [ ! -d "${BASEDIR}/crates/${crate}" ] ; then