[package] name = "HTU21D" description = "HTU21D Driver using embedded_hal" version = "0.1.1" authors = ["Zahyr Seferina "] edition = "2018" readme = "README.md" repository = "https://github.com/Ryhazerus/HTU21D" license = "MIT" keywords = ["driver", "htu21d", "sensor", "hal"] [lib] name = "HTU21D" # The name of the target. path = "src/lib.rs" # The source file of the target. test = true # Is tested by default. doctest = true # Documentation examples are tested by default. bench = true # Is benchmarked by default. doc = true # Is documented by default. harness = true # Use libtest harness. edition = "2018" # The edition of the target. crate-type = ["lib"] # The crate types to generate. [dependencies] embedded-hal = "0.2.3" linux-embedded-hal = "0.3.0"