Lorenz Schmidt
Lorenz Schmidt
Hey, thanks for the interest. I was a bit inactive recently and haven't heard about this feature. One thing which is definitely missing is the `connected_website` field in object.rs. Perhaps...
Can't you just use the `bot.get_stream(None)` function and filter for text? Don't want to over-complicate the API :sweat_smile:
or wait that exactly is a `text based command` in contrast to a normal command. I'm not super up-to-date to any updates of the Telegram API
Updated `hyper-multipart` in 5c80581f5e3c1fbb467e57a5b3599e5c3bf4637f Updated `uuid` in 9d681dd3cfe8e7f2df15e5d18e8c3a8165a58cab The other two are much more difficult to update. Unfortunately we will need to rewrite the parser completely to support the new...
> error: package `time v0.3.14` cannot be built because it requires rustc 1.59.0 or newer, while the currently active rustc version is 1.57.0 not sure which dependency causes this issue
to give a concrete example, you can compose types implementing a trait (for async you have the [Stream](https://docs.rs/futures/latest/futures/prelude/stream/trait.StreamExt.html#method.chain) trait as example): ```rust let block = FileSource::::new("my_filename.cf32", false) .map(|sample| sample *...
> One is async message passing and one is high-throughput stream data are the sample based methods using the polling infrastructure? I thought they use the same underlying async runtime...
Thank you for this awesome project! > Maybe the help from somebody with more Rust experience is needed... (ping @bytesnake wink) @nils-werner asked me to take a look (he knows...
> I think this idea (pure compile time checking) is impossible if it is intended to be able to dynamically re/configure from an external source you can specialize your implementation...
reviewed the example and made two changes to make the explained variance more usable 1. use more than two samples for validation, otherwise the second class has zero variance 2....