Eric Woolsey

Results 44 issues of Eric Woolsey

### Description of the issue Pretty much the title. Looks like the crash occurs just as the prompt to provide a name comes up. ### Reproduction steps Using Mac OS...

bug

Here is my fn ```rust #[cached(result = true, time = 0, size = 500, sync_writes = true)] pub async fn token_info_cache(addr: String) -> ApiResult { let msg = cw20_base::msg::QueryMsg::TokenInfo {};...

Here is an example using Rocket. This feature would really clean up my code base. ```rust #[cached(result = true, time = 5, sync_writes = true, force_refresh = refresh)] // This...

Heres a quick example of how it could look: ``` #[derive(EnumIter)] pub enum AssetInfo { Token { #[strum(default=Addr::unchecked(""))] contract_addr: Addr }, NativeToken { denom: String }, } ``` This would...

I have a project called [interactive-parse](https://crates.io/crates/interactive-parse) that builds JsonSchema types interactively using inquire. It calls various inquire methods many times to eventually build out the structure, and I would like...

I'm a DND dungeon master and often find myself wanting to hide only some information within a file. Here is an example of how it could look. ``` # Interesting...

I'm a DND dungeon master and often find myself wanting to hide only some information within a file. Here is an example of how it could look. ``` # Interesting...

It's common practice to create empty links in obsidian. IMO this warning should be ignored by default.

Doesn't look like this has been asked here before. One thing my team is looking for is the ability to specify histogram buckets when registering a histogram. This can currently...

C-core
E-complex
T-request

Either create a `register_async_callback`, or change the signature of the original. Personally I prefer the first option. Here is a relevant discussion, https://github.com/open-telemetry/opentelemetry-rust/discussions/1362

enhancement
triage:todo