Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions crates/bindings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
Some of the links in this file are not resolved when previewing on GitHub,
but *are* resolved when compiled by Rustdoc.

To run the doctests, run the `./bindings-doctests.sh` script.
This works around some issues related to doctests and wasm, but it requires nightly,
so it isn't currently run on CI.
The doctests run on CI through `cargo ci lint`.

When you add a doc-tested code sample, make sure to copy the boilerplate around
some other code sample, the:
Expand All @@ -16,7 +14,7 @@
# }
```
This makes sure your samples don't break when tested on non-wasm;
but you need to use `./bindings-doctests.sh` to actually test them.
CI also tests them for wasm.
-->

[SpacetimeDB](https://spacetimedb.com/) allows using the Rust language to write server-side applications called **modules**. Modules, which run inside a relational database, have direct access to database tables, and expose public functions called **reducers** that can be invoked over the network. Clients connect directly to the database to read data.
Expand Down Expand Up @@ -618,7 +616,7 @@ fn players_for_level(ctx: &AnonymousViewContext) -> Vec<PlayerAndLevel> {
.player_level()
.level()
.filter(2u64)
.map(|player| {
.filter_map(|player| {
ctx.db
.player()
.id()
Expand Down
5 changes: 0 additions & 5 deletions demo/Blackholio/server-csharp/logs.sh

This file was deleted.

5 changes: 0 additions & 5 deletions demo/Blackholio/server-csharp/publish.sh

This file was deleted.

44 changes: 0 additions & 44 deletions demo/Blackholio/server-csharp/write-nuget-config.sh

This file was deleted.

5 changes: 0 additions & 5 deletions demo/Blackholio/server-rust/logs.sh

This file was deleted.

25 changes: 0 additions & 25 deletions run_standalone_temp.sh

This file was deleted.

51 changes: 51 additions & 0 deletions script-triage.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# translate
git-hooks/install-hooks.sh
sdks/csharp/tools~/update-against-stdb.sh # port to `cargo csharp`

# ask for input

crates/sqltest/build_standard.py
crates/sqltest/override_with_output.sh
crates/sqltest/reformat.sh
crates/sqltest/run_all_sequential.sh

# exception
tools/perf.sh # this one only works on linux regardless so /shrug


# untriaged
crates/bench/callgrind-docker.sh
crates/bench/flamegraph.sh
crates/bench/hyper_cmp.py
crates/bench/instruments.sh
crates/bindings-cpp/tests/client-comparison/check_tables.py
crates/bindings-cpp/tests/client-comparison/run_client_comparison.sh
crates/bindings-cpp/tests/client-comparison/scripts/compare_clients.sh
crates/bindings-cpp/tests/client-comparison/scripts/compare_modules.sh
crates/bindings-cpp/tests/client-comparison/scripts/regenerate_cpp_client.sh
crates/bindings-cpp/tests/client-comparison/scripts/regenerate_rust_client.sh
crates/bindings-cpp/tests/type-isolation-test/run_type_isolation_test.sh
crates/bindings-cpp/tests/type-isolation-test/update_table_from_log.sh
crates/bindings/bindings-doctests.sh
crates/sqltest/build_standard.py
crates/sqltest/override_with_output.sh
crates/sqltest/reformat.sh
crates/sqltest/run_all_sequential.sh
crates/update/spacetime-install.sh
demo/Blackholio/server-csharp/generate.sh
demo/Blackholio/server-rust/generate.sh
demo/Blackholio/server-rust/publish.sh
docs/scripts/get-old-docs.sh
modules/module-test-cpp/compare_module_schemas.py
sdks/csharp/tools~/gen-client-api.sh
sdks/csharp/tools~/run-regression-tests.sh
templates/keynote-2/scripts/bench-stats.py
templates/keynote-2/scripts/check-bench.sh
templates/keynote-2/scripts/plot-bench.py
templates/keynote-2/scripts/start-bench.sh
templates/keynote-2/scripts/stop-bench.sh
tools/clippy.sh
tools/crate-publish-checks.py
tools/find-publish-list.py
tools/merge-docker-images.sh
tools/update-test-snapshots.sh
78 changes: 0 additions & 78 deletions sdks/csharp/tools~/upgrade-version.py

This file was deleted.

105 changes: 0 additions & 105 deletions tools/publish-crates.sh

This file was deleted.

Loading