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]]
|
[[package]]
|
||||||
name = "seymour_life_rust"
|
name = "seymour_life"
|
||||||
version = "2.3.0"
|
version = "2.3.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"clap",
|
"clap",
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#cargo-features = ["per-package-target"]
|
#cargo-features = ["per-package-target"]
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "seymour_life_rust"
|
name = "seymour_life"
|
||||||
version = "2.3.0"
|
version = "2.3.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# 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
|
#### Nix
|
||||||
This applies to both NixOS, and any distribution where the [Nix package manager](https://nixos.org/download.html) can be installed.
|
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,4 +1,4 @@
|
||||||
use seymour_life_rust::{device::Device,
|
use seymour_life::{device::Device,
|
||||||
tty::{self,TTY,Response},
|
tty::{self,TTY,Response},
|
||||||
gpio_facade::GpioPins};
|
gpio_facade::GpioPins};
|
||||||
use std::{io::{stdin,stdout,Write},
|
use std::{io::{stdin,stdout,Write},
|
||||||
|
@ -25,7 +25,7 @@ struct Args{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const VERSION:&str="2.3.0";
|
const VERSION:&str="2.3.1";
|
||||||
const DEBUG_ITERATION_COUNT:u64=50000;
|
const DEBUG_ITERATION_COUNT:u64=50000;
|
||||||
|
|
||||||
fn int_input_filtering(prompt:Option<&str>) -> u64{
|
fn int_input_filtering(prompt:Option<&str>) -> u64{
|
||||||
|
|
Loading…
Add table
Reference in a new issue