Skip to content

Commit b6fdc6c

Browse files
authored
Move crates/sdk to sdks/rust (#3181)
# Description of Changes I'm moving `crates/sdk` to `sdks/rust` to be more in line with where the rest of our SDKs are listed. I updated the corresponding paths etc. that pointed to the previous location. This PR is based on #3185, because if we merge this without that, our release scripts will be broken. # API and ABI breaking changes None # Expected complexity level and risk 1 # Testing - [x] Existing CI passes --------- Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com>
1 parent 9bd40d6 commit b6fdc6c

433 files changed

Lines changed: 5 additions & 5 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ members = [
2424
"crates/query",
2525
"crates/sats",
2626
"crates/schema",
27-
"crates/sdk",
27+
"sdks/rust",
2828
"crates/snapshot",
2929
"crates/sqltest",
3030
"crates/sql-parser",
@@ -41,9 +41,9 @@ members = [
4141
"modules/quickstart-chat",
4242
"modules/sdk-test",
4343
"modules/sdk-test-connect-disconnect",
44-
"crates/sdk/tests/test-client",
45-
"crates/sdk/tests/test-counter",
46-
"crates/sdk/tests/connect_disconnect_client",
44+
"sdks/rust/tests/test-client",
45+
"sdks/rust/tests/test-counter",
46+
"sdks/rust/tests/connect_disconnect_client",
4747
"tools/upgrade-version", "crates/codegen",
4848
]
4949
default-members = ["crates/cli", "crates/standalone", "crates/update"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ cursive.workspace = true
4040
futures-channel.workspace = true
4141

4242
# for tests
43-
spacetimedb-testing = { path = "../testing" }
43+
spacetimedb-testing = { path = "../../crates/testing" }
4444

4545
[lints]
4646
workspace = true
File renamed without changes.
File renamed without changes.

crates/sdk/examples/quickstart-chat/module_bindings/identity_connected_reducer.rs renamed to sdks/rust/examples/quickstart-chat/module_bindings/identity_connected_reducer.rs

File renamed without changes.

crates/sdk/examples/quickstart-chat/module_bindings/identity_disconnected_reducer.rs renamed to sdks/rust/examples/quickstart-chat/module_bindings/identity_disconnected_reducer.rs

File renamed without changes.

crates/sdk/examples/quickstart-chat/module_bindings/message_table.rs renamed to sdks/rust/examples/quickstart-chat/module_bindings/message_table.rs

File renamed without changes.

crates/sdk/examples/quickstart-chat/module_bindings/message_type.rs renamed to sdks/rust/examples/quickstart-chat/module_bindings/message_type.rs

File renamed without changes.

crates/sdk/examples/quickstart-chat/module_bindings/mod.rs renamed to sdks/rust/examples/quickstart-chat/module_bindings/mod.rs

File renamed without changes.

0 commit comments

Comments
 (0)