Ophir LOJKINE

Results 183 issues of Ophir LOJKINE

I was trying to make an https server that would auto-generate ssl certificate with TLS-ALPN-01. There is a crate available that implements it: [rustls-acme](https://github.com/FlorianUekermann/rustls-acme), but it seems [impossible to use...

[Cookie::set_value](https://docs.rs/actix-web/latest/actix_web/cookie/struct.Cookie.html#method.set_value) accepts any unicode string and never fails, but some unicode strings [are not valid cookie values](https://datatracker.ietf.org/doc/html/rfc6265#section-4.1.1). Could we add a `try_set_value` method that only accepts valid values ? Otherwise,...

C-bug
C-bug-upstream
A-web

### Description Initially reported in https://github.com/lovasoa/SQLpage/issues/172 ### Steps to Reproduce 1. Create a non-stacked bar chart with - a datetime x axis - 10 distinct date values for each series...

bug

Hello ! What would you think of accepting the [`#[serde(other)`](https://serde.rs/variant-attrs.html#other) attribute on struct- and tuple- enum variants ? Currently, the following code : ```rust #[derive(Deserialize, Debug)] enum Item { Foo,...

Hello! I see no recent commit and many opened pull requests that did not get any reaction. If there is no active maintainer, then are you looking for help to...

**Describe the bug** Adding or substracting a scalar variable to a numpy array raises an error if the array length is zero. **To Reproduce** ```python import cvxpy as cp import...

feature request

### Describe the bug Rendering a page that depends on a never-solving promise leaks memory. Svelte seems to keep handlers around for the resolution of promises even after the page...

pkg:adapter-node

### Is there an existing issue for this? - [X] I have searched the existing issues ### Current Behavior Starting altair results in a blank screen. ![image](https://github.com/altair-graphql/altair/assets/552629/2f409db9-dfef-4211-a10e-17b9489d11fb) ``` ❯ altair...

Platform: linux

In the current version of chrono, timezone-aware datetime comparisons ignore the timezone. https://github.com/chronotope/chrono/blob/d754c5c7dda975869d7672de0cf370e376f27305/src/datetime/mod.rs#L1167-L1171 (the timezone should be compared here too) This means that ```rust DateTime::parse_from_rfc3339("2016-10-23T12:45:37+02:00") == DateTime::parse_from_rfc3339("2016-10-23T12:45:37+07:00") ``` even though...

documentation
API-incompatible

Hello ! The following valid SQL statement fails to parse: ```sql select my_alias.value from json_each('{"hello": "world"}') my_alias ``` It should parse the same as the following ```sql select my_alias.value from...