@@ -11,6 +11,7 @@ members = [
1111 " crates/commitlog" ,
1212 " crates/core" ,
1313 " crates/data-structures" ,
14+ " crates/datastore" ,
1415 " crates/durability" ,
1516 " crates/execution" ,
1617 " crates/expr" ,
@@ -90,7 +91,7 @@ debug = true
9091version = " 1.2.0"
9192edition = " 2021"
9293# update rust-toolchain.toml too!
93- rust-version = " 1.84 .0"
94+ rust-version = " 1.88 .0"
9495
9596[workspace .dependencies ]
9697spacetimedb = { path = " crates/bindings" , version = " 1.2.0" }
@@ -104,6 +105,7 @@ spacetimedb-codegen = { path = "crates/codegen", version = "1.2.0" }
104105spacetimedb-commitlog = { path = " crates/commitlog" , version = " 1.2.0" }
105106spacetimedb-core = { path = " crates/core" , version = " 1.2.0" }
106107spacetimedb-data-structures = { path = " crates/data-structures" , version = " 1.2.0" }
108+ spacetimedb-datastore = { path = " crates/datastore" , version = " 1.2.0" }
107109spacetimedb-durability = { path = " crates/durability" , version = " 1.2.0" }
108110spacetimedb-execution = { path = " crates/execution" , version = " 1.2.0" }
109111spacetimedb-expr = { path = " crates/expr" , version = " 1.2.0" }
@@ -283,6 +285,7 @@ unicode-normalization = "0.1.23"
283285url = " 2.3.1"
284286urlencoding = " 2.1.2"
285287uuid = { version = " 1.2.1" , features = [" v4" ] }
288+ v8 = " 137.2"
286289walkdir = " 2.2.5"
287290wasmbin = " 0.6"
288291webbrowser = " 1.0.2"
@@ -324,3 +327,10 @@ features = [
324327 " broadcast" ,
325328 " ondemand" ,
326329]
330+
331+ [workspace .lints .rust ]
332+ unexpected_cfgs = { level = " warn" , check-cfg = [' cfg(tokio_unstable)' ] }
333+
334+ [workspace .lints .clippy ]
335+ # FIXME: we should work on this lint incrementally
336+ result_large_err = " allow"
0 commit comments