-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove spacetimedb-core as a dep of cli #2244
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[package] | ||
name = "spacetimedb-auth" | ||
version.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
|
||
[dependencies] | ||
spacetimedb-lib.workspace = true | ||
|
||
anyhow.workspace = true | ||
serde.workspace = true | ||
serde_with.workspace = true | ||
jsonwebtoken.workspace = true |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pub mod identity; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,9 +21,9 @@ bench = false | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
spacetimedb-auth.workspace = true | ||
spacetimedb-client-api-messages.workspace = true | ||
spacetimedb-core.workspace = true | ||
spacetimedb-data-structures.workspace = true | ||
spacetimedb-data-structures = { workspace = true, features = ["serde"] } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why is the feature newly needed here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It was being enabled by |
||
spacetimedb-fs-utils.workspace = true | ||
spacetimedb-lib.workspace = true | ||
spacetimedb-paths.workspace = true | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was removed the
TokenValidationError
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method never actually returned anything other than its
Other(anyhow::Error)
variant, so it's easier to just returnanyhow::Error
.