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 <[email protected]>
1 parent 9bd40d6 commit b6fdc6c

File tree

433 files changed

+5
-5
lines changed

Some content is hidden

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

433 files changed

+5
-5
lines changed

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"]

crates/sdk/Cargo.toml renamed to sdks/rust/Cargo.toml

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.

0 commit comments

Comments
 (0)