monitoring kit
Diffstat (limited to 'gpu/Cargo.toml')
| -rw-r--r-- | gpu/Cargo.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gpu/Cargo.toml b/gpu/Cargo.toml new file mode 100644 index 0000000..6c9335e --- /dev/null +++ b/gpu/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "gpu" +version = "1.0.0" +edition = "2021" +authors = ["bend-n <[email protected]>"] +repository = "https://github.com/bend-n/monitorkit" +license = "MIT" +rust-version = "1.85" + +[dependencies] +anyhow = "1.0.97" +atools = "0.1.6" +collar = "1.0.1" +comat = "0.1.3" +parking_lot = "0.12.3" +termion = "4.0.4" +grapher = { path = "../grapher" } +memchr = "2.7.4" + + +[[bin]] +name = "intel" +doc = false +path = "src/intel.rs" |