sensors 0.2.2

A Rust-friendly interface to lm-sensors
Documentation
extern crate sensors;

use sensors::Sensors;

fn main() {
	let sensors = Sensors::new();
	for chip in sensors {
		println!(
			"{} (on {})",
			chip.get_name().unwrap(),
			chip.bus().get_adapter_name().unwrap()
		);
		for feature in chip {
			println!("  - {}", feature.get_label().unwrap());
			for subfeature in feature {
				println!(
					"    - {} = {}",
					subfeature.name(),
					subfeature.get_value().unwrap()
				);
			}
		}
	}
}