-
Notifications
You must be signed in to change notification settings - Fork 2
chore: update to match changed dependencies #216
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
Conversation
| #![cfg_attr(not(test), warn(unused_crate_dependencies))] | ||
| #![deny(unused_must_use, rust_2018_idioms)] | ||
| #![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))] | ||
| #![recursion_limit = "256"] |
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.
Without this, we get:
error: queries overflow the depth limit!
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`builder`)
= note: query depth increased by 130 when computing layout of `{async fn body of config::<impl at src/config.rs:173:1: 173:19>::connect_builder_signer()}`
It seems reasonable to just take the compiler's advice here. We're only just over the default limit of 128, and presumably that happened due a slight increase in complexity of type nesting in one of the updated deps.
.gitignore
Outdated
| .vscode/launch.json No newline at end of file | ||
| .vscode/launch.json | ||
|
|
||
| .claude/ |
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.
I don't think we want to add .claude/ to the gitignore since we're adding skills for individual repos instead of centralizing them.
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.
It's handy to have this ignored since claude code will create .claude/settings.local.json if you do something like give it permission to always do a web search while working in that repo. I guess we should be more specific and just ignore the .local.json file?
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.
Updated in 3e11601.
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.
Agreed that's a better pattern for this.
dylanlott
left a comment
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.
Looks good!
.gitignore
Outdated
| .vscode/launch.json No newline at end of file | ||
| .vscode/launch.json | ||
|
|
||
| .claude/ |
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.
Agreed that's a better pattern for this.

No description provided.