Jeremy Kolb

Results 113 comments of Jeremy Kolb

I'm interested in this as well. I'm trying to use LDAP to authenticate and then fall back to the database if need be.

This suddenly went away. I'm wondering if it has something to do with our corporate internet.

I didn't touch any settings. Maybe they touched something on their end.

I can reproduce this on Windows 10.

> PS C:\projects\test\stdweb\examples\todomvc> cargo web start --target=wasm32-unknown-unknown --verbose > DEBUG 2018-07-16T19:03:41Z: cargo_web::cargo_shim: Launching: "\\\\?\\C:\\Users\\jkolb\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\bin\\cargo.exe" "metadata" "--format-version" "1" > DEBUG 2018-07-16T19:03:41Z: cargo_web::config: Loading "C:\\projects\\test\\stdweb\\Web.toml"... > DEBUG 2018-07-16T19:03:41Z: cargo_web::build: `stdweb`'s Web.toml requires...

Command and output: > PS C:\projects\test\stdweb\examples\todomvc> . "C:\Users\jkolb\.rustup\toolchains\nightly-x86_64-pc-windows-msvc\bin\cargo.exe" "metadata" "--format-version" "1" {"packages":[{"name":"html5ever","version":"0.13.1","id":"html5ever 0.13.1 (registry+https://github.com/rust-lang/crates.io-index)","license":"MIT / Apache-2.0","license_file":null,"description":"High- performance browser-grade HTML5 parser","source":"registry+https://github.com/rust-lang/crates.io-index","dependencies":[{"name":"heapsize","source":"registry+https://github.com/rust-lang/crates.io-ind ex","req":"^0.3","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null},{"name":"heapsize_derive","source":"registry+https://github.com/rust-lang/crates.io- index","req":"^0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null},{"name":"mac","source":"registry+https://github.com/rust-lang/crates.io-index","r eq":"^0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null},{"name":"tendril","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^ 0.2.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null},{"name":"log","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0","ki nd":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null},{"name":"phf","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.7","kind":null ,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null},{"name":"html5ever-atoms","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind": null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null},{"name":"rustc-serialize","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.15", "kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null},{"name":"rustc-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1.3 ","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null},{"name":"quote","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.3"," kind":"build","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null},{"name":"rustc-serialize","source":"registry+https://github.com/rust-lang/crates.io-index","req":"...

Thanks it seems to work now.

@dtolnay it looks like this was approved a few months back but not merged in.

In the case of ```rust pub struct S; impl S { pub fn blah(&self) {} } struct T(S); impl T { fn foo(&self) { self.0. } } ``` It looks...

Shouldn't `struct T(S);` be a `TupleStruct`? I don't see much about them in our code.