Version bump
Also, fix readme typo
This commit is contained in:
parent
c501f6c5e6
commit
e73dac51f5
4 changed files with 9 additions and 9 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -638,8 +638,8 @@ dependencies = [
|
|||
]
|
||||
|
||||
[[package]]
|
||||
name = "seymour_life_rust"
|
||||
version = "2.3.0"
|
||||
name = "seymour_life"
|
||||
version = "2.3.1"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"clap",
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#cargo-features = ["per-package-target"]
|
||||
|
||||
[package]
|
||||
name = "seymour_life_rust"
|
||||
version = "2.3.0"
|
||||
name = "seymour_life"
|
||||
version = "2.3.1"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
|
@ -68,4 +68,4 @@ sudo dnf install rust-libudev-sys-devel rust-pkg-config-devel
|
|||
#### Nix
|
||||
This applies to both NixOS, and any distribution where the [Nix package manager](https://nixos.org/download.html) can be installed.
|
||||
|
||||
If you have the Nix package manager installed, this project comes with a `shell.nix` package containing the necessary build dependencies. Simply run `nix-shell` to download the necessary dependencies.
|
||||
If you have the Nix package manager installed, this project comes with a `shell.nix` containing the necessary build dependencies. Simply run `nix-shell` to download the necessary dependencies.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use seymour_life_rust::{device::Device,
|
||||
tty::{self,TTY,Response},
|
||||
gpio_facade::GpioPins};
|
||||
use seymour_life::{device::Device,
|
||||
tty::{self,TTY,Response},
|
||||
gpio_facade::GpioPins};
|
||||
use std::{io::{stdin,stdout,Write},
|
||||
thread::{self, JoinHandle},
|
||||
path::Path,
|
||||
|
@ -25,7 +25,7 @@ struct Args{
|
|||
|
||||
}
|
||||
|
||||
const VERSION:&str="2.3.0";
|
||||
const VERSION:&str="2.3.1";
|
||||
const DEBUG_ITERATION_COUNT:u64=50000;
|
||||
|
||||
fn int_input_filtering(prompt:Option<&str>) -> u64{
|
||||
|
|
Loading…
Add table
Reference in a new issue