A criminally fast and simple system info fetching tool
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Removed unnecesary dependencies

-77
-74
Cargo.lock
··· 15 15 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 16 16 17 17 [[package]] 18 - name = "humantime" 19 - version = "2.1.0" 20 - source = "registry+https://github.com/rust-lang/crates.io-index" 21 - checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 22 - 23 - [[package]] 24 18 name = "hypofetch" 25 19 version = "0.2.1" 26 20 dependencies = [ 27 - "humantime", 28 - "json", 29 - "uptime_lib", 30 21 "whoami", 31 22 ] 32 23 ··· 40 31 ] 41 32 42 33 [[package]] 43 - name = "json" 44 - version = "0.12.4" 45 - source = "registry+https://github.com/rust-lang/crates.io-index" 46 - checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd" 47 - 48 - [[package]] 49 - name = "libc" 50 - version = "0.2.137" 51 - source = "registry+https://github.com/rust-lang/crates.io-index" 52 - checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" 53 - 54 - [[package]] 55 34 name = "log" 56 35 version = "0.4.17" 57 36 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 100 79 version = "1.0.5" 101 80 source = "registry+https://github.com/rust-lang/crates.io-index" 102 81 checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" 103 - 104 - [[package]] 105 - name = "uptime_lib" 106 - version = "0.2.2" 107 - source = "registry+https://github.com/rust-lang/crates.io-index" 108 - checksum = "cb09db59ba21f967f9bceeac9e71401775d4f2ad34652ba086003c445731237f" 109 - dependencies = [ 110 - "libc", 111 - "windows", 112 - ] 113 82 114 83 [[package]] 115 84 name = "wasm-bindgen" ··· 185 154 "wasm-bindgen", 186 155 "web-sys", 187 156 ] 188 - 189 - [[package]] 190 - name = "windows" 191 - version = "0.39.0" 192 - source = "registry+https://github.com/rust-lang/crates.io-index" 193 - checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a" 194 - dependencies = [ 195 - "windows_aarch64_msvc", 196 - "windows_i686_gnu", 197 - "windows_i686_msvc", 198 - "windows_x86_64_gnu", 199 - "windows_x86_64_msvc", 200 - ] 201 - 202 - [[package]] 203 - name = "windows_aarch64_msvc" 204 - version = "0.39.0" 205 - source = "registry+https://github.com/rust-lang/crates.io-index" 206 - checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2" 207 - 208 - [[package]] 209 - name = "windows_i686_gnu" 210 - version = "0.39.0" 211 - source = "registry+https://github.com/rust-lang/crates.io-index" 212 - checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b" 213 - 214 - [[package]] 215 - name = "windows_i686_msvc" 216 - version = "0.39.0" 217 - source = "registry+https://github.com/rust-lang/crates.io-index" 218 - checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106" 219 - 220 - [[package]] 221 - name = "windows_x86_64_gnu" 222 - version = "0.39.0" 223 - source = "registry+https://github.com/rust-lang/crates.io-index" 224 - checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65" 225 - 226 - [[package]] 227 - name = "windows_x86_64_msvc" 228 - version = "0.39.0" 229 - source = "registry+https://github.com/rust-lang/crates.io-index" 230 - checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809"
-3
Cargo.toml
··· 13 13 14 14 [dependencies] 15 15 whoami = "1.2.3" 16 - uptime_lib = "0.2.2" 17 - humantime = "2.1.0" 18 - json = "0.12.4"