iphands / randy

System info viewer written in Rust / GTK3. Inspired by Conky.
GNU General Public License v3.0
109 stars 9 forks source link

gtk version update from 0.9 to 0.17, nvml-wrapper update to version 0.9, cargo fix and more. #36

Closed claudiofsr closed 1 year ago

claudiofsr commented 1 year ago

First apply

cargo fix

And some replacements. For example:

    match Option {
       Some(v) => f(v),
       None => (),
    }

by

    if let Some(v) = Option {
       f(v)
    }

And other changes.