Skip to content

Commit

Permalink
Release: 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gekkio committed Jun 16, 2018
1 parent 9ee5773 commit 1b7cd44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gb-live32/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gb-live32"
version = "0.1.0"
version = "2.0.0"
authors = ["Joonas Javanainen <[email protected]>"]
description = "CLI for the GB-LIVE32 rapid development board"
license = "MIT/Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion gb-live32/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ extern crate rand;
extern crate serialport;

use bufstream::BufStream;
use rand::{FromEntropy, RngCore};
use rand::rngs::SmallRng;
use rand::{FromEntropy, RngCore};
use serialport::SerialPort;
use std::io::{self, BufRead, Read, Write};
use std::time::Duration;
Expand Down
2 changes: 1 addition & 1 deletion gb-live32/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ extern crate simplelog;
use clap::{Arg, ArgMatches};
use failure::Error;
use gb_live32::Gbl32;
use rand::{FromEntropy, RngCore};
use rand::rngs::SmallRng;
use rand::{FromEntropy, RngCore};
use serialport::SerialPortType;
use simplelog::{LevelFilter, TermLogger};
use std::ffi::{OsStr, OsString};
Expand Down

0 comments on commit 1b7cd44

Please sign in to comment.