Skip to content

Commit

Permalink
Committing all the changes I needed to make in order to publish
Browse files Browse the repository at this point in the history
  • Loading branch information
cloutiertyler committed Dec 13, 2024
1 parent 0d07b36 commit 6802a7a
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 23 deletions.
29 changes: 14 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,15 @@ spacetimedb-core = { path = "crates/core", version = "1.0.0-rc2" }
spacetimedb-data-structures = { path = "crates/data-structures", version = "1.0.0-rc2" }
spacetimedb-durability = { path = "crates/durability", version = "1.0.0-rc2" }
spacetimedb-execution = { path = "crates/execution", version = "1.0.0-rc2" }
spacetimedb-expr = { path = "crates/expr", version = "1.0.0-rc2" }
spacetimedb-expr = { package = "spacetimedb-expr-2", path = "crates/expr", version = "1.0.0-rc2" }
spacetimedb-lib = { path = "crates/lib", default-features = false, version = "1.0.0-rc2" }
spacetimedb-metrics = { path = "crates/metrics", version = "1.0.0-rc2" }
spacetimedb-physical-plan = { path = "crates/physical-plan", version = "1.0.0-rc2" }
spacetimedb-primitives = { path = "crates/primitives", version = "1.0.0-rc2" }
spacetimedb-sats = { path = "crates/sats", version = "1.0.0-rc2" }
spacetimedb-schema = { path = "crates/schema", version = "1.0.0-rc2" }
spacetimedb-schema = { package = "spacetimedb-schema-2", path = "crates/schema", version = "1.0.0-rc2" }
spacetimedb-standalone = { path = "crates/standalone", version = "1.0.0-rc2" }
spacetimedb-sql-parser = { path = "crates/sql-parser", version = "1.0.0-rc2" }
spacetimedb-sql-parser = { package = "spacetimedb-sql-parser-2", path = "crates/sql-parser", version = "1.0.0-rc2" }
spacetimedb-table = { path = "crates/table", version = "1.0.0-rc2" }
spacetimedb-vm = { path = "crates/vm", version = "1.0.0-rc2" }
spacetimedb-fs-utils = { path = "crates/fs-utils", version = "1.0.0-rc2" }
Expand Down Expand Up @@ -172,7 +172,7 @@ indicatif = "0.16"
insta = { version = "1.21.0", features = ["toml"] }
is-terminal = "0.4"
itertools = "0.12"
jsonwebtoken = { git = "https://github.com/jsdt/jsonwebtoken.git", rev = "7f0cef63c74f58dfa912e88da844932ba4c71562"}
jsonwebtoken = { package = "spacetimedb-jsonwebtoken", version = "9.3.0" }
lazy_static = "1.4.0"
log = "0.4.17"
mimalloc = "0.1.39"
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ url.workspace = true
urlencoding.workspace = true
uuid.workspace = true
wasmtime.workspace = true
jwks = { git = "https://github.com/jsdt/jwks.git", rev = "acb4241f3768ff89515a0c12d927e280a604fff3"}
jwks = { package = "spacetimedb-jwks", version = "0.1.3" }
async_cache = "0.3.1"
faststr = "0.2.23"

Expand Down
2 changes: 1 addition & 1 deletion crates/expr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "spacetimedb-expr"
name = "spacetimedb-expr-2"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/schema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "spacetimedb-schema"
name = "spacetimedb-schema-2"
version.workspace = true
edition.workspace = true
license-file = "LICENSE"
Expand Down Expand Up @@ -32,6 +32,6 @@ enum-as-inner.workspace = true
spacetimedb-lib = { workspace = true, features = ["test"] }
# these are circular dependencies, but only in tests, so it's fine
spacetimedb-testing = { path = "../testing" }
spacetimedb-cli.workspace = true
# spacetimedb-cli.workspace = true

proptest.workspace = true

0 comments on commit 6802a7a

Please sign in to comment.