Results 68 comments of Trangar

I'm okay with waiting on keeping this issue open until bincode 2 has been properly released. Currently we're still in 2.0-alpha and could possibly do 1.x releases

I have the same issue when connecting to a local git server through ssh ~/.cache/gitui/gitui.log ``` 1:08:20 [TRACE] (1) gitui::app: [/home/trangar/.cargo/registry/src/github.com-1ecc6299db9ec823/gitui-0.15.0/src/app.rs:305] update 11:08:20 [TRACE] (6) mio::poll: [/home/trangar/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.7.11/src/poll.rs:478] registering event source...

Hyper 0.12 supports websockets: https://github.com/hyperium/hyper/blob/master/examples/upgrades.rs Rocket is still on hyper 0.10 though, so we'll need to upgrade that dependency first Edit: which seems blocked on 0.5.0: https://github.com/SergioBenitez/Rocket/issues/17#issuecomment-415609486

I ran into this issue while trying to parallelize some systems with amethyst's [Transform](https://docs.rs/amethyst_core/0.5.1/amethyst_core/transform/components/struct.Transform.html) component which happens to have a FlaggedStorage storage. It'd be nice to support this, but definitely...

I can't believe I have to spell this out but... Please don't ping random people that are not involved with the project.

Same issue here. To reproduce, run: ```bash mkdir test_project && cd $_ cargo init . --lib docker run -ti -v $PWD:/home/project:z quay.io/ctron/rust-esp:latest create-project # exit this immediately after it opens...

The functions that are being called are: ``` lua_newstate(0x7ff6746c0e40, 0x0) lua_atpanic(0x25c332b96d0, 0x7ff6746c0ec0) luaL_openlibs(0x25c332b96d0) lua_load(0x25c332b96d0, 0x7ff6746bc9a0, 0xa6f2aff2e0, 0x7ff67470f858, 0x0) lua_pushvalue(0x25c332b96d0, -1) lua_pcallk(0x25c332b96d0, 0, 1, 0, 0, None) lua_settop(0x25c332b96d0, -2) lua_settop(0x25c332b96d0, -2)...

You're right, I ran the wrong script. I've updated the original message

Ah yes changing `let key: String = key;` to `let key: hlua::AnyLuaValue = key;` Fixed the issue. The next value was an LuaNumber(0) so that's where hlua tried reading a...

Maybe also useful to decide on standards for: - location of data/database files - Log output On unix system we might also have to differentiate between running our binaries as...