Matthew Sherborne

Results 9 comments of Matthew Sherborne

I was referring to the main [project readme](https://github.com/awslabs/aws-sdk-rust/) - but it looks like you already fixed it :) I'm behind a corporate proxy. What's the best way forward for me...

**Goal:** Create a smithy_client that I can use with sts, but with a hyper_proxy::Connector. I'm trying to get access to the underlying hyper client, but so far without success. So...

That got me going. Thank you :) @rcoh I'd like to leave this open though. Feature request: * Config::from_env() should detect 'HTTPS_PROXY' environment variable and automatically makes your connection use...

If anyone figures out a work around in the meantime, please paste it here.

My work around is: 1. Comment out the default_tags block 2. Build 3. Uncomment the default_tags block 4. re-apply

I also have a slightly related question. In the ann layer API, why do we use rvalue references for `output` ? ``` template void Forward(const arma::Mat&& input, arma::Mat&& output); ```...

Update: I hit it again, but without the funny triangle brackets. It may be the database schema that caused it this time. ```json { "soh_code": "204:SYD" } ``` Schema: ```surql...

If I try putting: ``` surrealdb = { version = "1.4.0", features = ["protocol-http", "sql2", "surrealdb_unstable"] } ``` in my cargo.toml I get this error: ``` ❯ cargo build --release...

So after more learning, `sql2` is [deprecated in 1.4.0](https://github.com/surrealdb/surrealdb/blob/v1.4.0/Cargo.toml#L23) I'm guessing `parser2` replaces it. I had some luck including parser2 in the features and ```shell $ export RUSTFLAGS="--cfg surrealdb_unstable" ```...