From 60d55f2f9e2bb1a77b42a88d2c74987b5d3caf64 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sat, 4 Apr 2020 03:33:19 +0100 Subject: [PATCH 1/8] deleted deprecated python file --- src/led.py | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 src/led.py diff --git a/src/led.py b/src/led.py deleted file mode 100644 index fc846e9..0000000 --- a/src/led.py +++ /dev/null @@ -1,6 +0,0 @@ -import board -import neopixel -pixels = neopixel.NeoPixel(board.D5, 30) - -def theaterChaseRainbow(): - pass \ No newline at end of file From c32454792f40e57e02cb395fc04b654c62e7d61e Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sat, 4 Apr 2020 03:34:52 +0100 Subject: [PATCH 2/8] added handling of request timeouts --- src/app.rs | 3 ++- src/config.rs | 33 +++++++++++++++++++++++---------- src/main.rs | 2 +- 3 files changed, 26 insertions(+), 12 deletions(-) diff --git a/src/app.rs b/src/app.rs index 7eb2f59..1ca2ba3 100644 --- a/src/app.rs +++ b/src/app.rs @@ -11,6 +11,7 @@ pub enum ActiveApp { Crunchyroll, Funimation, VRV, + Nothing } // enum used to select what kind of TV you are using @@ -40,7 +41,7 @@ pub fn match_to_app(text: String) -> ActiveApp { Some("Pandora") => ActiveApp::Pandora, Some("Spotify") => ActiveApp::Spotify, Some("Plex") => ActiveApp::Plex, - _ => ActiveApp::Roku, + _ => ActiveApp::Nothing, } } diff --git a/src/config.rs b/src/config.rs index 5336fe1..f8cc368 100644 --- a/src/config.rs +++ b/src/config.rs @@ -44,11 +44,15 @@ impl Configuration { port = self.port ); - let response = reqwest::get(&request).unwrap(); - let document = Document::from_read(response).unwrap(); - let next = document.find(Name("app")).next().unwrap(); - - next.text().to_string() + let response = get_request(&request); + match response { + Ok(res) => { + let document = Document::from_read(res).unwrap(); + let next = document.find(Name("app")).next().unwrap(); + next.text().to_string() + } + Err(_) => "_".to_string() + } } pub fn get_power_status(&self) -> String { @@ -58,11 +62,15 @@ impl Configuration { port = self.port ); - let response = reqwest::get(&request).unwrap(); - let document = Document::from_read(response).unwrap(); - let next = document.find(Name("power-mode")).next().unwrap(); - - next.text().to_string() + let response = get_request(&request); + match response { + Ok(res) => { + let document = Document::from_read(res).unwrap(); + let next = document.find(Name("power-mode")).next().unwrap(); + next.text().to_string() + } + Err(_) => "_".to_string() + } } } @@ -76,3 +84,8 @@ pub fn init_config() -> Configuration { config } + +pub fn get_request(request: &String) -> Result { + let response = reqwest::get(request); + response +} \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index 785a0c1..51848ec 100644 --- a/src/main.rs +++ b/src/main.rs @@ -103,7 +103,7 @@ fn main() { } ws.write(brightness(data.iter().cloned(), 32)).unwrap(); }, - _ => println!("Oops!"), + _ => println!("We don't know what app is running right now..."), } } }, From aee9c527aba0b508483d8fa4d2b6d5e84739bff7 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sun, 5 Apr 2020 05:43:21 +0100 Subject: [PATCH 3/8] added abstraction that changes color for lights --- src/main.rs | 47 ++++++++++++++--------------------------------- 1 file changed, 14 insertions(+), 33 deletions(-) diff --git a/src/main.rs b/src/main.rs index 51848ec..7b4915c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -58,49 +58,24 @@ fn main() { match activeapp { app::ActiveApp::Roku => { - let color = RGB8::new(255, 0, 255); - let mut data = [RGB8::default(); NUM_LEDS]; - - for i in 0..NUM_LEDS { - data[i] = color; - } + let data = change_color(&255, &0, &255); ws.write(brightness(data.iter().cloned(), 10)).unwrap(); }, app::ActiveApp::Hulu => { - let green = RGB8::new(51, 255, 85); - let mut data = [RGB8::default(); NUM_LEDS]; - - for i in 0..NUM_LEDS { - data[i] = green; - } + let data = change_color(&51, &255, &85); ws.write(brightness(data.iter().cloned(), 32)).unwrap(); }, app::ActiveApp::Netflix => { - let red = RGB8::new(255, 77, 77); - let mut data = [RGB8::default(); NUM_LEDS]; - - for i in 0..NUM_LEDS { - data[i] = red; - } + let data = change_color(&255, &77, &77); ws.write(brightness(data.iter().cloned(), 32)).unwrap(); }, app::ActiveApp::AmazonPrime => println!("The light are light blue!"), app::ActiveApp::Spotify => { - let green = RGB8::new(51, 255, 85); - let mut data = [RGB8::default(); NUM_LEDS]; - - for i in 0..NUM_LEDS { - data[i] = green; - } + let data = change_color(&51, &255, &85); ws.write(brightness(data.iter().cloned(), 32)).unwrap(); }, app::ActiveApp::Plex => { - let orange = RGB8::new(255, 187, 51); - let mut data = [RGB8::default(); NUM_LEDS]; - - for i in 0..NUM_LEDS { - data[i] = orange; - } + let data = change_color(&255, &187, &51); ws.write(brightness(data.iter().cloned(), 32)).unwrap(); }, _ => println!("We don't know what app is running right now..."), @@ -115,7 +90,13 @@ fn main() { } } -#[warn(unreachable_patterns)] -pub fn change_color(_num_leds: usize, _num_one: &u8, _num_two: &u8, _num_three: &u8) { - // code goes here +fn change_color(num_one: &u8, num_two: &u8, num_three: &u8) -> [RGB8; 150] { + let color = RGB8::new(*num_one, *num_two, *num_three); + let mut data = [RGB8::default(); NUM_LEDS]; + + for i in 0..NUM_LEDS { + data[i] = color; + } + + data } \ No newline at end of file From 946f238ee28685073ac148814e64628f8f00be52 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Thu, 16 Apr 2020 01:12:30 +0100 Subject: [PATCH 4/8] added documentation --- README.md | 66 ++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 58 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 1550136..7557c14 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,26 @@ Read the source code. ## Pre req's * A Raspberry Pi (tested with a Raspberry Pi 4) -* A WS2818B LED strip +* A WS2818 LED light strip (you can order this from [Amazon](https://www.amazon.com/s?k=ws2818+led+strip)) * Rust 1.40+ (this is the version of Rust `bleak` was written in) However, any version of Rust 2018 will most likely be fine ## Installation ### Hardware -Coming soon! +The hardware installation process isn't too tedious. However, it does take some knowledge of Raspberry Pi's GPIO and how it works. + +There should be three wires coming out the LED light strip. Typically, a red wire, a black wire, and another wire that could be any color besides red or black. + +Red can usually signify that this wire should be on a 5V GPIO pin. There are multiple so choose any that fits your fancy. + +Black can usually signify ground. So it should sit on a ground GPIO pin. Again, there are multiple. + +The wire I want to bring attention to is the other wire. This is the data wire. This wire holds all the data going to lights. This wire is placed on GPIO pin 19, an SPI wire. + +SPI is kind of a neat but I'll spare you the details. If you would like to get more information on SPI, you can go read about it [here](https://en.wikipedia.org/wiki/Serial_Peripheral_Interface). + +Once that's all done, flash an operating system onto a SD card, plug the Raspberry Pi, and you're all set. Onward! To the software portion! ### Software @@ -33,6 +45,16 @@ Download and install Rust. You can find Rust [here](https://www.rust-lang.org/) `curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh` +#### Option One + +We all know `cargo` is pretty great, admit it. You can use `cargo` to install something directly from `git`, which is pretty cool. Run the following: + +`cargo install --git https://scm.wyattjmiller.com/wyatt/bleak bleak` + +`cargo` will download, compile, and install `bleak` for you, assuming that you have `cargo`'s bin directory in your `PATH`. + +#### Option Two + Clone this repository: `git clone https://github.com/wymillerlinux/bleak` @@ -41,9 +63,35 @@ Asssuming one is a command line wizard, you have navigated to the root of the pr ## Compilation/Use -There's two ways of compiling this project. One way is to compile on Rasberry Pi itself, which is a bit slow. The other way is some cross-compilation hoodoo voodoo magic which I have not explored as of yet. Once I figure out to use cross-compliation effectively, I will update this readme. +First, you have to manually create the JSON file for which `bleak` will read. +There are five values: +- ipaddr +- port +- tv +- active_app +- power_status -Next, run `cargo` to compile it (I happened to compile this on the Raspberry Pi itself): +The ipaddr and port keys will be pretty straight-forward. The tv, active_app, and power_status keys are arbitrary. + +Here's the default JSON file you can use: + +` +{ + "ipaddr": "192.168.1.20", + "port": 8060, + "tv": "Roku", + "active_app": "Roku", + "power_status": "PowerOn" +} +` + +Make sure it's saved under `config.json`. + +**NOTE:** If you followed option one, you can skip the following, just run `bleak` or enable and run the systemd file. If you followed option two, please continue. + +Next, there's two ways of compiling this project. One way is to compile on Rasberry Pi itself, which is a bit slow. The other way is some cross-compilation hoodoo voodoo magic which I have not explored as of yet. Once I figure out to use cross-compliation effectively, I will update this readme. + +Run `cargo` to compile it (I happened to compile this on the Raspberry Pi itself): `cargo build --release && cp ./target/release/bleak ~/.cargo/bin && bleak` @@ -58,9 +106,11 @@ I wrote a systmed service file so starting and stopping would be like I'm starti ## Troubleshooting Things that I've noticed: -* `bleak` will fail from time to time when grabbing responses. There's no error handling at this point. -* `bleak` like to change color to some random color(s) when being told to change color to, say, green or red. -* Roku TV's tend to be slow while `bleak` is running. Can't reproduce this problem, however... +* ~~`bleak` will crash from time to time when grabbing responses. There's no error handling at this point.~~ +* `bleak` like to change color to some random color(s) when being told to change color to, say, green or red. I think that's just my light strip (or my breadboard I use for development) but I hav eno other light strips to test... +* ~~Roku TV's tend to be slow while `bleak` is running. Can't reproduce this problem, however~~ Doesn't seem to do this anymore + +If you find any other issues with `bleak`, please send them my way in the form of a [new issue](https://scm.wyattjmiller.com/wyatt/bleak/issues/new). ## Smart TV support @@ -76,4 +126,4 @@ Future possibilities: ## Contribution -I'd love some contributors! Submit a PR and email me for some more information! +I'd love some contributions! Submit an issue or a PR and email me for some more information! From b652eedede5d12b8845143bbc9e839458b58fb93 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sat, 23 May 2020 21:08:20 +0100 Subject: [PATCH 5/8] removed some pre-Rust 2018 'features', made code more readable --- src/config.rs | 24 ++++++++++++++---------- src/main.rs | 28 ++++++++++++++-------------- 2 files changed, 28 insertions(+), 24 deletions(-) diff --git a/src/config.rs b/src/config.rs index f8cc368..11a8786 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,7 +1,3 @@ -extern crate serde; -extern crate serde_derive; -extern crate serde_json; - use std::fs::File; use std::io::Read; use std::path::Path; @@ -47,9 +43,13 @@ impl Configuration { let response = get_request(&request); match response { Ok(res) => { - let document = Document::from_read(res).unwrap(); - let next = document.find(Name("app")).next().unwrap(); - next.text().to_string() + let document = Document::from_read(res) + .unwrap(); + let next = document.find(Name("app")) + .next() + .unwrap(); + next.text() + .to_string() } Err(_) => "_".to_string() } @@ -65,9 +65,13 @@ impl Configuration { let response = get_request(&request); match response { Ok(res) => { - let document = Document::from_read(res).unwrap(); - let next = document.find(Name("power-mode")).next().unwrap(); - next.text().to_string() + let document = Document::from_read(res) + .unwrap(); + let next = document.find(Name("power-mode")) + .next() + .unwrap(); + next.text() + .to_string() } Err(_) => "_".to_string() } diff --git a/src/main.rs b/src/main.rs index 7b4915c..a72fd62 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,10 +1,3 @@ -// external crates getting imported -extern crate reqwest; -extern crate select; -extern crate serde; -extern crate serde_derive; -extern crate serde_json; - // std lib imports use std::{thread, time}; @@ -21,7 +14,8 @@ mod generate; const NUM_LEDS: usize = 150; fn main() { - let spi = Spi::new(Bus::Spi0, SlaveSelect::Ss0, 3_000_000, Mode::Mode0).unwrap(); + let spi = Spi::new(Bus::Spi0, SlaveSelect::Ss0, 3_000_000, Mode::Mode0) + .unwrap(); let mut ws = Ws2812::new(spi); let mut configuration = config::init_config(); let mut is_headless: bool = false; @@ -45,7 +39,8 @@ fn main() { data[i] = color; } - ws.write(brightness(data.iter().cloned(), 32)).unwrap(); + ws.write(brightness(data.iter().cloned(), 32)) + .unwrap(); } }, app::TVPower::On => { @@ -59,24 +54,29 @@ fn main() { match activeapp { app::ActiveApp::Roku => { let data = change_color(&255, &0, &255); - ws.write(brightness(data.iter().cloned(), 10)).unwrap(); + ws.write(brightness(data.iter().cloned(), 10)) + .unwrap(); }, app::ActiveApp::Hulu => { let data = change_color(&51, &255, &85); - ws.write(brightness(data.iter().cloned(), 32)).unwrap(); + ws.write(brightness(data.iter().cloned(), 32)) + .unwrap(); }, app::ActiveApp::Netflix => { let data = change_color(&255, &77, &77); - ws.write(brightness(data.iter().cloned(), 32)).unwrap(); + ws.write(brightness(data.iter().cloned(), 32)) + .unwrap(); }, app::ActiveApp::AmazonPrime => println!("The light are light blue!"), app::ActiveApp::Spotify => { let data = change_color(&51, &255, &85); - ws.write(brightness(data.iter().cloned(), 32)).unwrap(); + ws.write(brightness(data.iter().cloned(), 32)) + .unwrap(); }, app::ActiveApp::Plex => { let data = change_color(&255, &187, &51); - ws.write(brightness(data.iter().cloned(), 32)).unwrap(); + ws.write(brightness(data.iter().cloned(), 32)) + .unwrap(); }, _ => println!("We don't know what app is running right now..."), } From c8b38923891aba03c282fe843765b9a5ccf9501b Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sat, 23 May 2020 21:25:11 +0100 Subject: [PATCH 6/8] added some apps, some code cleanup apps added include the following: Amazon Prime, Pandora, Crunchyroll, Funimation, and VRV --- src/app.rs | 3 +++ src/config.rs | 4 ---- src/main.rs | 28 +++++++++++++++++++++++++--- 3 files changed, 28 insertions(+), 7 deletions(-) diff --git a/src/app.rs b/src/app.rs index 1ca2ba3..8c70cdd 100644 --- a/src/app.rs +++ b/src/app.rs @@ -41,6 +41,9 @@ pub fn match_to_app(text: String) -> ActiveApp { Some("Pandora") => ActiveApp::Pandora, Some("Spotify") => ActiveApp::Spotify, Some("Plex") => ActiveApp::Plex, + Some("Crunchyroll") => ActiveApp::Crunchyroll, + Some("Funimation") => ActiveApp::Funimation, + Some("VRV") => ActiveApp::VRV, _ => ActiveApp::Nothing, } } diff --git a/src/config.rs b/src/config.rs index 11a8786..3ba16c2 100644 --- a/src/config.rs +++ b/src/config.rs @@ -21,10 +21,6 @@ impl Configuration { self.active_app == self.get_app_status() } - pub fn is_change_power(&self) -> bool { - self.power_status == self.get_power_status() - } - pub fn change_active_app(&mut self, app_text: &String) { self.active_app = app_text.to_string(); } diff --git a/src/main.rs b/src/main.rs index a72fd62..a681d70 100644 --- a/src/main.rs +++ b/src/main.rs @@ -23,7 +23,6 @@ fn main() { loop { println!("{:?}", configuration); - let power_text = configuration.get_power_status(); configuration.change_power(&power_text); let tvpower = app::match_to_power_status(power_text); @@ -67,13 +66,37 @@ fn main() { ws.write(brightness(data.iter().cloned(), 32)) .unwrap(); }, - app::ActiveApp::AmazonPrime => println!("The light are light blue!"), + app::ActiveApp::AmazonPrime => { + let data = change_color(&99, &123, &255); + ws.write(brightness(data.iter().cloned(), 32)) + .unwrap(); + }, + app::ActiveApp::Pandora => { + let data = change_color(&99, &123, &255); + ws.write(brightness(data.iter().cloned(), 32)) + .unwrap(); + }, app::ActiveApp::Spotify => { let data = change_color(&51, &255, &85); ws.write(brightness(data.iter().cloned(), 32)) .unwrap(); }, app::ActiveApp::Plex => { + let data = change_color(&255, &187, &51); + ws.write(brightness(data.iter().cloned(), 32)) + .unwrap(); + }, + app::ActiveApp::Crunchyroll => { + let data = change_color(&255, &187, &51); + ws.write(brightness(data.iter().cloned(), 32)) + .unwrap(); + }, + app::ActiveApp::Funimation => { + let data = change_color(&255, &0, &255); + ws.write(brightness(data.iter().cloned(), 32)) + .unwrap(); + }, + app::ActiveApp::VRV => { let data = change_color(&255, &187, &51); ws.write(brightness(data.iter().cloned(), 32)) .unwrap(); @@ -82,7 +105,6 @@ fn main() { } } }, - _ => println!("We don't know what the power status of the TV is..."), } let sec = time::Duration::from_secs(1); From e4473f656663b171a32a0d25b612d4e40c9ae394 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sun, 24 May 2020 18:49:31 +0100 Subject: [PATCH 7/8] added request.rs --- src/config.rs | 13 +++++-------- src/main.rs | 1 + src/request.rs | 4 ++++ 3 files changed, 10 insertions(+), 8 deletions(-) create mode 100644 src/request.rs diff --git a/src/config.rs b/src/config.rs index 3ba16c2..d1481ec 100644 --- a/src/config.rs +++ b/src/config.rs @@ -4,7 +4,9 @@ use std::path::Path; use select::document::Document; use select::predicate::Name; -use serde::{Serialize, Deserialize}; +use serde_derive::{Serialize, Deserialize}; + +use crate::request; // config structure #[derive(Serialize, Deserialize, Debug)] @@ -36,7 +38,7 @@ impl Configuration { port = self.port ); - let response = get_request(&request); + let response = request::get_request(&request); match response { Ok(res) => { let document = Document::from_read(res) @@ -58,7 +60,7 @@ impl Configuration { port = self.port ); - let response = get_request(&request); + let response = request::get_request(&request); match response { Ok(res) => { let document = Document::from_read(res) @@ -83,9 +85,4 @@ pub fn init_config() -> Configuration { let config: Configuration = serde_json::from_str(&data).expect("Couldn't parse JSON!"); config -} - -pub fn get_request(request: &String) -> Result { - let response = reqwest::get(request); - response } \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index a681d70..12ab113 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,6 +10,7 @@ use ws2812_spi::Ws2812; mod app; mod config; mod generate; +mod request; const NUM_LEDS: usize = 150; diff --git a/src/request.rs b/src/request.rs new file mode 100644 index 0000000..405f629 --- /dev/null +++ b/src/request.rs @@ -0,0 +1,4 @@ +pub fn get_request(request: &String) -> Result { + let response = reqwest::get(request); + response +} \ No newline at end of file From bc1901081a8f97f1b1cccbdc6236c47e09094e33 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sun, 24 May 2020 18:49:58 +0100 Subject: [PATCH 8/8] updated dependencies --- Cargo.lock | 137 ++++++++++++++++++++++++++--------------------------- Cargo.toml | 30 ++++++------ 2 files changed, 84 insertions(+), 83 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fb05d3d..35d929b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,20 +63,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "bleak" -version = "0.1.0" +version = "0.2.0" dependencies = [ "chrono 0.4.11 (registry+https://github.com/rust-lang/crates.io-index)", "embedded-hal 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "linux-embedded-hal 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "reqwest 0.9.24 (registry+https://github.com/rust-lang/crates.io-index)", "rppal 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)", "select 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.105 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.105 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.53 (registry+https://github.com/rust-lang/crates.io-index)", "smart-leds 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ws2812-spi 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ws2812-spi 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -145,12 +144,12 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "idna 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "publicsuffix 1.5.4 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.105 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.53 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "try_from 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -242,7 +241,7 @@ dependencies = [ [[package]] name = "encoding_rs" -version = "0.8.22" +version = "0.8.23" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -258,7 +257,7 @@ dependencies = [ [[package]] name = "failure" -version = "0.1.7" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "backtrace 0.3.46 (registry+https://github.com/rust-lang/crates.io-index)", @@ -344,7 +343,7 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -376,7 +375,7 @@ dependencies = [ [[package]] name = "hermit-abi" -version = "0.1.10" +version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "libc 0.2.68 (registry+https://github.com/rust-lang/crates.io-index)", @@ -558,7 +557,7 @@ dependencies = [ [[package]] name = "lock_api" -version = "0.3.3" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -585,9 +584,9 @@ dependencies = [ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "phf 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", "phf_codegen 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.105 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.105 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.53 (registry+https://github.com/rust-lang/crates.io-index)", "string_cache 0.7.5 (registry+https://github.com/rust-lang/crates.io-index)", "string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "tendril 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -670,12 +669,12 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.68 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl 0.10.28 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.10.29 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)", - "schannel 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework-sys 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.56 (registry+https://github.com/rust-lang/crates.io-index)", + "schannel 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework-sys 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -730,16 +729,16 @@ dependencies = [ [[package]] name = "num_cpus" -version = "1.12.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "hermit-abi 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "hermit-abi 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.68 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "openssl" -version = "0.10.28" +version = "0.10.29" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -747,7 +746,7 @@ dependencies = [ "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.68 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.56 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -757,7 +756,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "openssl-sys" -version = "0.9.54" +version = "0.9.56" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -772,7 +771,7 @@ name = "parking_lot" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "lock_api 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -842,7 +841,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "ppv-lite86" -version = "0.2.6" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -874,7 +873,7 @@ dependencies = [ "error-chain 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)", "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 1.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.7 (registry+https://github.com/rust-lang/crates.io-index)", "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -938,7 +937,7 @@ name = "rand_chacha" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "ppv-lite86 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1042,7 +1041,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "regex" -version = "1.3.6" +version = "1.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "regex-syntax 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1070,7 +1069,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "cookie 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", "cookie_store 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)", + "encoding_rs 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)", "flate2 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1080,8 +1079,8 @@ dependencies = [ "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", "mime_guess 2.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "native-tls 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.105 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.53 (registry+https://github.com/rust-lang/crates.io-index)", "serde_urlencoded 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1131,7 +1130,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "schannel" -version = "0.1.18" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1145,19 +1144,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "security-framework" -version = "0.4.2" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "core-foundation 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "core-foundation-sys 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.68 (registry+https://github.com/rust-lang/crates.io-index)", - "security-framework-sys 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "security-framework-sys 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "security-framework-sys" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation-sys 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1188,15 +1187,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "serde" -version = "1.0.105" +version = "1.0.110" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "serde_derive 1.0.105 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_derive" -version = "1.0.105" +version = "1.0.110" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "proc-macro2 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1206,12 +1205,12 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.50" +version = "1.0.53" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", "ryu 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.105 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1221,7 +1220,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "dtoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.105 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.7.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1264,7 +1263,7 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.2.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1310,7 +1309,7 @@ dependencies = [ "new_debug_unreachable 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", "phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)", "precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.105 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)", "string_cache_codegen 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1420,7 +1419,7 @@ dependencies = [ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-current-thread 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1478,7 +1477,7 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)", "parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1519,7 +1518,7 @@ dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-executor 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1569,7 +1568,7 @@ name = "unicode-normalization" version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1684,7 +1683,7 @@ dependencies = [ [[package]] name = "ws2812-spi" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "embedded-hal 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1730,9 +1729,9 @@ dependencies = [ "checksum dtoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "4358a9e11b9a09cf52383b451b49a169e8d797b68aa02301ff586d70d9661ea3" "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" "checksum embedded-hal 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ee4908a155094da7723c2d60d617b820061e3b4efcc3d9e293d206a5a76c170b" -"checksum encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)" = "cd8d03faa7fe0c1431609dfad7bbe827af30f82e1e2ae6f7ee4fca6bd764bc28" +"checksum encoding_rs 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)" = "e8ac63f94732332f44fe654443c46f6375d1939684c17b0afb6cb56b0456e171" "checksum error-chain 0.12.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d371106cc88ffdfb1eabd7111e432da544f16f3e2d7bf1dfe8bf575f1df045cd" -"checksum failure 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b8529c2421efa3066a5cbd8063d2244603824daccb6936b079010bb2aa89464b" +"checksum failure 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" "checksum failure_derive 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "030a733c8287d6213886dd487564ff5c8f6aae10278b3588ed177f9d18f8d231" "checksum flate2 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)" = "2cfff41391129e0a856d6d822600b8d71179d46879e310417eb9c762eb178b42" "checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" @@ -1746,7 +1745,7 @@ dependencies = [ "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" "checksum getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb" "checksum h2 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)" = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" -"checksum hermit-abi 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "725cf19794cf90aa94e65050cb4191ff5d8fa87a498383774c47b332e3af952e" +"checksum hermit-abi 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "91780f809e750b0a89f5544be56617ff6b1227ee485bcb06ebe10cdf89bd3b71" "checksum html5ever 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5ce65ac8028cf5a287a7dbf6c4e0a6cf2dcf022ed5b167a81bae66ebf599a8b7" "checksum http 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0" "checksum http-body 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" @@ -1764,7 +1763,7 @@ dependencies = [ "checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" "checksum libc 0.2.68 (registry+https://github.com/rust-lang/crates.io-index)" = "dea0c0405123bba743ee3f91f49b1c7cfb684eef0da0a50110f758ccf24cdff0" "checksum linux-embedded-hal 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e04b2d8e29bb2d949bc9f0ed8acee5033833166731c7e479d0c74d7ef2ab042d" -"checksum lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "79b2de95ecb4691949fea4716ca53cdbcfccb2c612e19644a8bad05edcf9f47b" +"checksum lock_api 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75" "checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" "checksum mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" "checksum markup5ever 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f1af46a727284117e09780d05038b1ce6fc9c76cc6df183c3dae5a8955a25e21" @@ -1783,10 +1782,10 @@ dependencies = [ "checksum nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce" "checksum num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "3f6ea62e9d81a77cd3ee9a2a5b9b609447857f3d358704331e4ef39eb247fcba" "checksum num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "c62be47e61d1842b9170f0fdeec8eba98e60e90e5446449a0545e5152acd7096" -"checksum num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "46203554f085ff89c235cd12f7075f3233af9b11ed7c9e16dfe2560d03313ce6" -"checksum openssl 0.10.28 (registry+https://github.com/rust-lang/crates.io-index)" = "973293749822d7dd6370d6da1e523b0d1db19f06c459134c658b2a4261378b52" +"checksum num_cpus 1.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" +"checksum openssl 0.10.29 (registry+https://github.com/rust-lang/crates.io-index)" = "cee6d85f4cb4c4f59a6a85d5b68a233d280c82e29e822913b9c8b129fbf20bdd" "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" -"checksum openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)" = "1024c0a59774200a555087a6da3f253a9095a5f344e353b212ac4c8b8e450986" +"checksum openssl-sys 0.9.56 (registry+https://github.com/rust-lang/crates.io-index)" = "f02309a7f127000ed50594f0b50ecc69e7c654e16d41b4e8156d1b3df8e0b52e" "checksum parking_lot 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" "checksum parking_lot_core 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b" "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" @@ -1796,7 +1795,7 @@ dependencies = [ "checksum phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662" "checksum phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0" "checksum pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677" -"checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" +"checksum ppv-lite86 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "237a5ed80e274dbc66f86bd59c1e25edc039660be53194b5fe0a482e0f2612ea" "checksum precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" "checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759" "checksum proc-macro2 1.0.10 (registry+https://github.com/rust-lang/crates.io-index)" = "df246d292ff63439fea9bc8c0a270bed0e390d5ebd4db4ba15aba81111b5abe3" @@ -1819,7 +1818,7 @@ dependencies = [ "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" -"checksum regex 1.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7f6946991529684867e47d86474e3a6d0c0ab9b82d5821e314b1ede31fa3a4b3" +"checksum regex 1.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a6020f034922e3194c711b82a627453881bc4682166cabb07134a10c26ba7692" "checksum regex-syntax 0.6.17 (registry+https://github.com/rust-lang/crates.io-index)" = "7fe5bd57d1d7414c6b5ed48563a2c855d995ff777729dcd91c369ec7fea395ae" "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" "checksum reqwest 0.9.24 (registry+https://github.com/rust-lang/crates.io-index)" = "f88643aea3c1343c804950d7bf983bd2067f5ab59db6d613a08e05572f2714ab" @@ -1828,23 +1827,23 @@ dependencies = [ "checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" "checksum ryu 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535622e6be132bccd223f4bb2b8ac8d53cda3c7a6394944d3b2b33fb974f9d76" -"checksum schannel 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "039c25b130bd8c1321ee2d7de7fde2659fa9c2744e4bb29711cfc852ea53cd19" +"checksum schannel 0.1.19 (registry+https://github.com/rust-lang/crates.io-index)" = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75" "checksum scopeguard 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" -"checksum security-framework 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "572dfa3a0785509e7a44b5b4bebcf94d41ba34e9ed9eb9df722545c3b3c4144a" -"checksum security-framework-sys 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8ddb15a5fec93b7021b8a9e96009c5d8d51c15673569f7c0f6b7204e5b7b404f" +"checksum security-framework 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "64808902d7d99f78eaddd2b4e2509713babc3dc3c85ad6f4c447680f3c01e535" +"checksum security-framework-sys 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "17bf11d99252f512695eb468de5516e5cf75455521e69dfe343f3b74e4748405" "checksum select 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ac645958c62108d11f90f8d34e4dc2799c838fc995ed4c2075867a2a8d5be76b" "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" -"checksum serde 1.0.105 (registry+https://github.com/rust-lang/crates.io-index)" = "e707fbbf255b8fc8c3b99abb91e7257a622caeb20a9818cbadbeeede4e0932ff" -"checksum serde_derive 1.0.105 (registry+https://github.com/rust-lang/crates.io-index)" = "ac5d00fc561ba2724df6758a17de23df5914f20e41cb00f94d5b7ae42fffaff8" -"checksum serde_json 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = "78a7a12c167809363ec3bd7329fc0a3369056996de43c4b37ef3cd54a6ce4867" +"checksum serde 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)" = "99e7b308464d16b56eba9964e4972a3eee817760ab60d88c3f86e1fecb08204c" +"checksum serde_derive 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)" = "818fbf6bfa9a42d3bfcaca148547aa00c7b915bec71d1757aa2d44ca68771984" +"checksum serde_json 1.0.53 (registry+https://github.com/rust-lang/crates.io-index)" = "993948e75b189211a9b31a7528f950c6adc21f9720b6438ff80a7fa2f864cea2" "checksum serde_urlencoded 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a" "checksum serial-core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3f46209b345401737ae2125fe5b19a77acce90cd53e1658cda928e4fe9a64581" "checksum serial-unix 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f03fbca4c9d866e24a459cbca71283f545a37f8e3e002ad8c70593871453cab7" "checksum siphasher 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" "checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" "checksum smallvec 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6" -"checksum smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc" +"checksum smallvec 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c7cb5678e1615754284ec264d9bb5b4c27d2018577fd90ac0ceb578591ed5ee4" "checksum smart-leds 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "38dd45fa275f70b4110eac5f5182611ad384f88bb22b68b9a9c3cafd7015290b" "checksum smart-leds-trait 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fef18e60d41a6fde19e640cd7590c03fb27aa23146bf60e4da85028d7410cee7" "checksum spidev 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aa5aa93a87c20f4efdf494917ef8fb475522601256ba6bb00ad1e6101f779fe9" @@ -1892,5 +1891,5 @@ dependencies = [ "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" "checksum winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9" -"checksum ws2812-spi 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce47ae80d2c9a7196062be3203106e466dcdf66c157e336810ede9ccbb006ff7" +"checksum ws2812-spi 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c6c2ba0d6c0ea9c117487411e93dc5dacaafc2c17698677a03d1c67901d4c70a" "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" diff --git a/Cargo.toml b/Cargo.toml index d0e420f..a82caef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,21 +1,23 @@ [package] -name = "bleak" -version = "0.1.0" authors = ["Wyatt J. Miller "] edition = "2018" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +name = "bleak" +version = "0.2.0" [dependencies] -serde = { version = "1.0.104", features = ["derive"] } -serde_derive = "1.0.104" -serde_json = "1.0.44" -reqwest = "0.9.24" -select = "0.4.3" -chrono = "0.4.10" -rppal = {version = "0.11.3", features = ['hal']} -smart-leds = "0.3.0" -ws2812-spi = "0.2.0" +chrono = "0.4.11" embedded-hal = "0.2.3" linux-embedded-hal = "*" -failure = "0.1.7" \ No newline at end of file +select = "0.4.3" +serde = "1.0.110" +serde_derive = "1.0.110" +serde_json = "1.0.53" +smart-leds = "0.3.0" +ws2812-spi = "0.3.0" + +[dependencies.rppal] +features = ["hal"] +version = "0.11.3" + +[dependencies.reqwest] +version = "0.9.24" \ No newline at end of file