init repo

This commit is contained in:
Robin Appelman 2020-02-08 01:08:14 +01:00
commit 137a6dc174
3 changed files with 14 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

10
Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "mitemp-prometheus"
version = "0.1.0"
authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018"
[dependencies]
main_error = "0.1.0"
mitemp = { version = "0.1.0", git = "https://github.com/icewind1991/mitemp-rs" }

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}