mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-13 11:17:50 -04:00
d6bc325244
# Description of Changes The first commit defines a type `TableName` that is used in e.g., `TxData` and where determined profitable and necessary to do this change. `TableName` is backed by [`ecow::EcoString`](https://docs.rs/ecow/0.2.6/ecow/string/struct.EcoString.html) which affords O(1) clones and 15 bytes of inline storage and `mem::size_of::<EcoString>() == 16`. The second commit does the same for `ReducerName`. This is also used in reducer execution. Together, these commits increase TPS by around 5-7k TPS. # API and ABI breaking changes None # Expected complexity level and risk 1 # Testing Covered by existing tests.
21 lines
529 B
TOML
21 lines
529 B
TOML
[package]
|
|
name = "spacetimedb-subscription"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license-file = "LICENSE"
|
|
description = "The SpacetimeDB subscription compiler"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
spacetimedb-execution.workspace = true
|
|
spacetimedb-expr.workspace = true
|
|
spacetimedb-lib.workspace = true
|
|
spacetimedb-primitives.workspace = true
|
|
spacetimedb-physical-plan.workspace = true
|
|
spacetimedb-query.workspace = true
|
|
spacetimedb-schema.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|