Hello,
Please, can you publish a new version of rfb on crates.io ?
The 0.1.0 works but doesn't have the latest updates of the Github version.
It's basically a matter of :
Guide here.
Have a good day. \o
To whoever have experienced the same problem:
My current workaround for the moment to use the last version of rfb in my Rust project is to add rfb as a git submodule and reference it in my Cargo.toml.
$ git submodule add https://github.com/oxidecomputer/rfb deps/rfb
Then editing the Cargo.toml with:
[dependencies]
rfb = { path = 'deps/rfb' }
Here is an example of my project that do that : (Not on Github, you can explore it on the Web or clone it)
https://git.ache.one/vnctrost/
Have a good day too. \o
Hello,
Please, can you publish a new version of rfb on crates.io ?
The 0.1.0 works but doesn't have the latest updates of the Github version.
It's basically a matter of :
cargo loginthencargo publish.Guide here.
Have a good day. \o
To whoever have experienced the same problem:
My current workaround for the moment to use the last version of
rfbin my Rust project is to addrfbas a git submodule and reference it in my Cargo.toml.Then editing the Cargo.toml with:
Here is an example of my project that do that : (Not on Github, you can explore it on the Web or clone it)
https://git.ache.one/vnctrost/
Have a good day too. \o