Will Buckner
Will Buckner
Adding a `MatchBytes()` to match a glob pattern against a byte slice would be incredibly useful for searching within files. For example: ``` package main import "github.com/gobwas/glob" func main() {...
### Please complete the following tasks - [X] I have searched the [discussions](https://github.com/clap-rs/clap/discussions) - [X] I have searched the [open](https://github.com/clap-rs/clap/issues) and [rejected](https://github.com/clap-rs/clap/issues?q=is%3Aissue+label%3AS-wont-fix+is%3Aclosed) issues ### Rust Version rustc 1.58.1 (db9d1b20b 2022-01-20)...
### NetBox version v3.2.5 ### Feature type Change to existing functionality ### Proposed functionality Currently, Netbox has a single free-form `address` field for sites. When external systems use Netbox as...
When defining security schemes, I can't find any way to express that multiple API keys are required, and they are not independent (see https://swagger.io/docs/specification/authentication/#multiple). My API has an AWS-style `access-key-id`...
https://github.com/glerchundi/sqlboiler-crdb/blob/d74f22dddadb6018ed1319a3285331086386295c/driver/crdb.go#L348-L349 I was surprised to see `UUID` columns represented as `string` in generated Go. The [CockroachDB Manual](https://www.cockroachlabs.com/docs/stable/uuid.html) clearly states that this data is stored as bytes, and in my Go...
Having this library block makes it a bit frustrating to work with from within an async actix_web API. Sure, we can use it inside a `web::block()`, but currently even the...
Fixes #5979 When malformed YAML creates resource paths like `"../../base - ../../shared/prod"`, `FileLoader.New()` was silently resolving these to existing ancestor directories through path normalization instead of failing appropriately. This could...