From c0c2b922b272f2b87b1a907e49499260a430ce23 Mon Sep 17 00:00:00 2001 From: cs2dsb Date: Wed, 8 Jan 2020 22:25:31 +0000 Subject: Initial commit, cargo version 0.1 --- Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..7871ca3 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "max31855" +version = "0.1.0" +authors = ["cs2dsb "] +edition = "2018" +description = "Driver for MAX31855 SPI thermocouple converter" +categories = ["hardware-support"] +keywords = ["embedded-hal-driver", "max31855", "no_std"] +license = "MIT OR Apache-2.0" +repository = "https://github.com/cs2dsb/max31855.rs" +readme = "README.md" +documentation = "https://docs.rs/max31855" +homepage = "https://github.com/cs2dsb/max31855.rs" + +[dependencies] +embedded-hal = { version = "0.2.3" } +bit_field = "0.10.0" \ No newline at end of file -- cgit v1.2.3-54-g00ecf