-
```rust
use url::Url;
fn main() {
println!("{:?}", Url::parse("http://\""));
}
```
Outputs:
```
Ok("http://\"/")
```
Parth updated
5 years ago
-
Hi,
I recently started using consul-rust for a project but found that async support was recently removed: https://github.com/pierresouchay/consul-rust/commit/41d133d8db7eef3f9c59bac9b1e7a333b2e337c…
-
```
./crates/foo/src/lib.rs
./crates/foo/Cargo.toml
[package]
name = "foo"
version = "0.1.0"
edition = "2021"
[dependencies]
slab = { workspace = true }
./Cargo.toml
[workspace]
membe…
e00E updated
6 months ago
-
### Would you like to work on this feature?
yes
### What problem are you trying to solve?
kube-rs currently supports the HTTP_PROXY (and all its variants) environment variable, but not the NO…
-
Use case for this is custom Auth policy for Envoy often needs to make additional validation HTTP requests to IDP services as example to validate header values or possibly chain 2 calls to get final OK…
-
> When building a URL, it would be convenient to be able to `finish` mutating path segments like one currently can for query pairs.
>
> ```rust
> // will NOT compile
> let mut url = Url::parse("..…
-
What about nested JSON, i.e. params fields?
```
// This will POST a body of `{"lang":"rust","body":"json"}`
let mut map = HashMap::new();
map.insert("lang", "rust");
map.insert("body", "json");
…
-
### Describe the bug
In Gaia Aquarium, you cannot tap the tank, click on the overseer for the daily gift (or the lucky chest for that matter) and you can't select the "Message in a Bottle feature, …
-
Support running on the web platform target, in addition to the "native" (Windows/Linux/Mac) platform currently supported
- [x] wasm (#92)
- [ ] graphics
- [x] glow (#262, #171)
- [x] web-sys…
-
awc doesn't seem to be stable enough for production. While using it for more than one month on a production server, I got too much unexpected errors.
For the same request, **curl** and **reqwest*…