Steve Smith
Steve Smith
Thanks for the heads-up, I missed that. Crossbeam Channel requires 1.28.0. I've tried testing with that, but due to a transitive dependency on cfg-if it requires enabling some 2018 features...
Sure, I'll take a look this weekend.
I've had a look at it, and it all looks reasonable. Some parts may have a small user-base, so it might be worth making them enabled via feature-flag to avoid...
I'm open to this, especially some of the utility operations that may be useful elsewhere. Currently I'm doing a long refactor to support more fine-grained parallelism, which means I'm rewriting...
Yeah, kind-of expected. Unfortunately I've never managed to get Rust to install properly on Win10, so I'm not in a position to fix it myself.
I'm not averse to it, but it it would need to handle the (I assume) most common case of moving files within the same filesystem. In this case the fastest...
Hi @the8472, thanks for the report. I haven't used VB shared volumes before, could you give me some more information about the setup you're using and I'll reproduce locally: *...
Fair point. I'm currently refactoring xcp to better support parallelism, which will require expanding the documentation, so I'll look at this then.
Not exactly eviction, but you can implement a TTL using metadata: pub fn get_cached(cache: &str, key: &str, ttl: u128) -> Result { let md = match cacache::metadata_sync(cache, key)? { Some(m)...
I can't reproduce this locally, and unfortunately I don't have access to macOS any more. Can you provide a link to the repository you used? It is very large, which...