-
Notifications
You must be signed in to change notification settings - Fork 4
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
chore: update protos #154
chore: update protos #154
Conversation
Also removes generate_api_token temporarily, as it is currently not supported in the way this sdk has it.
serde_json = "1.0" | ||
thiserror = "1.0" | ||
base64 = "0.21" | ||
futures = "0" | ||
zstd = "0.12.4" | ||
|
||
[dev-dependencies] | ||
base64-url = "1.4.13" | ||
env_logger = "0.9.0" | ||
tokio = { version = "1.26.0", features = ["full"] } | ||
tokio-test = "0.4.2" | ||
uuid = { version = "1.2.2", features = ["v4"] } | ||
futures = "0.3.25" | ||
anyhow = "1.0.68" | ||
base64-url = "2" | ||
env_logger = "0" | ||
tokio = { version = "1", features = ["full"] } | ||
tokio-test = "0" | ||
uuid = { version = "1", features = ["v4"] } | ||
futures = "0" | ||
anyhow = "1" |
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.
Did you mean to remove the patch and minor versions across this? And should the application dependencies be pinned vs lower bounded with semver? eg log = "0.4"
vs log = "^0.4"
?
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.
For dev dependencies I don't think it matters. It's easier for the next person to cargo update
if major versions aren't changing.
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.
OK. I'll open a ticket to unpin the application dependencies.
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.
Cool, thank you - that's worth considering!
Also removes generate_api_token temporarily, as it is currently not
supported in the way this sdk has it.