Skip to content
Merged
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
1 change: 1 addition & 0 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ perfmap = []
spacetimedb-lib = { path = "../lib", features = ["proptest"] }
spacetimedb-sats = { path = "../sats", features = ["proptest"] }
spacetimedb-commitlog = { path = "../commitlog", features = ["test"] }
Comment thread
gefjon marked this conversation as resolved.
spacetimedb-datastore = { path = "../datastore/", features = ["test"] }

criterion.workspace = true
# Also as dev-dependencies for use in _this_ crate's tests.
Expand Down
4 changes: 2 additions & 2 deletions crates/sqltest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ publish = false

[dependencies]
spacetimedb-lib.workspace = true
spacetimedb-core.workspace = true
spacetimedb-datastore.workspace = true
spacetimedb-core = { workspace = true, features = ["test"] }
spacetimedb-datastore = { workspace = true, features = ["test"] }
spacetimedb-sats.workspace = true
spacetimedb-vm.workspace = true

Expand Down
Loading