Boscop

Results 547 comments of Boscop

@Alexhuszagh What about `ArrayVec::from_iter([x])`? Wouldn't it result in very optimized code?

@vityafx How do you mean? Do you mean if the path doesn't exist, I have to call `hotwatch::watch` twice with the same path? (Once before getting the `Create` event and...

Is there an update on this? :) It would be really useful to have both versions in one crate..

On nightly, std now has a function to make paths absolute without requiring the file to exist! https://doc.rust-lang.org/nightly/std/path/fn.absolute.html This would solve this issue but it's only on nightly for now.

@amaury1729 No, I'm not using a proxy or VPN, I'm running it from my laptop at home. Any idea why my residential IP is blacklisted? :)

I tried to use `my_crate = { git = 'ssh://[email protected]:my-repo' }` but it said invalid port number. Then I tried `my_crate = { git = 'ssh://[email protected]/my-repo' }` but it said...

Should it be a Mutex because static variables are shared between all instances of a dll and because this could cause problems when the host uses multi threading when two...

I agree that a fixed size buffer would be preferable, but it doesn't have to be a ring buffer, just a Vec allocated during init(). I think we can put...