Skip to content

Instantly share code, notes, and snippets.

View devnote-dev's full-sized avatar
🏃
Getting ahead

Devonte W devnote-dev

🏃
Getting ahead
View GitHub Profile
@devnote-dev
devnote-dev / bigstat.rs
Last active October 5, 2023 01:42
Recursive file stat with Rust
// Bigstat
// (c) 2023 Devonte W <https://github.com/devnote-dev>
//
// Dependencies:
// bytesize = "1.3.0"
// fibers = "0.1"
// futures = "0.1"
use bytesize::ByteSize;
use fibers::{Executor, Spawn, ThreadPoolExecutor};