Results 53 issues of mx

#### Example of variables: ``` { startsWith: searchFilter.value } ``` where `searchFilter.value` is a state property from a Pinia store (a reactive object). If the value of `searchFilter` is increasing...

`format!()` macro should be avoided in places where it is called repeatedly, e.g. inside loops like this https://github.com/svix/svix-webhooks/blob/main/server/svix-server/src/core/types.rs#L429. Even if that line is not inside a loop it will be...

server

`sqlx` has a dependency on `native-tls`. Not every environment has OpenSSL and whatever the Win equivalent is. `rustls` is more interoperable. ``` │ │ ├── sqlx-rt v0.5.11 │ │ │...

enhancement
portability

Sorry, probably a dumb question, but I run this unikernel on EC2?

The project description at the top sounds interesting, but how does it work? A few lines describing the product, how it works and what the benefit of using it at...

A new version alert is not displayed if the difference is in MINOR or PATCH numbers only. It seems that only MAJOR version differences result in displaying the latest version...

This PR implements support for converting HashSet into GraphQL exactly the same way as Vec. Only output-related traits were implemented: * IsOutputType * GraphQLType * BaseType * WrapType * GraphQLValueAsync...

enhancement

I have a struct where some members are Vec and some are HashSet. They both should convert to/from a GraphQL list. ```rust pub struct Keywords { pub full_list: Vec, pub...

enhancement

AWS runs its own distribution of ES called ElasticSearch Service, which is mostly compatible with this library, except for the missing request signing feature. It makes impossible to use this...

enhancement

@ehuss , Eric, would you consider a PR for the following feature ... At the moment the sidebar is constructed out of the items listed in SUMMARY.md. It would be...

A-Summary