mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-13 11:17:50 -04:00
75c6e67c3c
# Description of Changes Host implementation to invoke `call_view` method. I also covers: 1. API `MutTxId::is_materialized`to check if existing view exisits and updated. 2. Update in readsets logic to remove stale views. 3. sql caller implmentation. # API and ABI breaking changes NA How complicated do you think these changes are? Grade on a scale from 1 to 5, where 1 is a trivial change, and 5 is a deep-reaching and complex change. 3
29 lines
765 B
TOML
29 lines
765 B
TOML
[package]
|
|
name = "spacetimedb-expr"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license-file = "LICENSE"
|
|
description = "The logical expression representation for the SpacetimeDB query engine"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
bigdecimal.workspace = true
|
|
derive_more.workspace = true
|
|
ethnum.workspace = true
|
|
thiserror.workspace = true
|
|
spacetimedb-lib.workspace = true
|
|
spacetimedb-primitives.workspace = true
|
|
spacetimedb-sats.workspace = true
|
|
spacetimedb-schema.workspace = true
|
|
spacetimedb-sql-parser.workspace = true
|
|
bytes.workspace = true
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions.workspace = true
|
|
spacetimedb = { path = "../bindings", features = ["unstable"] }
|
|
spacetimedb-lib = { path = "../lib" }
|
|
|
|
[lints]
|
|
workspace = true
|