Update dependencies & Add 0BSD License

This commit is contained in:
Silas Bartha 2024-12-11 15:16:46 -05:00
parent 3fa06f0c09
commit 33bd014e55
4 changed files with 330 additions and 705 deletions

1010
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,15 +1,15 @@
[package] [package]
name = "pomc" name = "pomc"
version = "1.1.2" version = "1.1.3"
description = "Client program for pomd pomodoro daemon" description = "Client program for pomd pomodoro daemon"
license = "MIT OR Apache-2.0" license = "0BSD OR MIT OR Apache-2.0"
keywords = ["productivity", "pomodoro", "daemon"] keywords = ["productivity", "pomodoro", "daemon"]
repository = "https://github.com/exvacuum/pomc" repository = "https://git.exvacuum.dev/pomc"
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
[dependencies] [dependencies]
async-std = { version = "1.12.0", features = ["attributes"] } async-std = { version = "1.13", features = ["attributes"] }
clap = { version = "4.4.8", features = ["derive"] } clap = { version = "4.5", features = ["derive"] }
zbus = "3.14.1" zbus = "5.1"

5
LICENSE-0BSD Normal file
View File

@ -0,0 +1,5 @@
Copyright (C) 2024 by Silas Bartha silas@exvacuum.dev
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

View File

@ -117,7 +117,7 @@ async fn get_iteration(connection: &Connection) -> Result<(), fdo::Error> {
&(), &(),
) )
.await?; .await?;
let iteration: u8 = m.body().unwrap(); let iteration: u8 = m.body().deserialize()?;
println!("{}", iteration + 1); println!("{}", iteration + 1);
Ok(()) Ok(())
} }
@ -132,7 +132,7 @@ async fn get_remaining(connection: &Connection) -> Result<(), fdo::Error> {
&(), &(),
) )
.await?; .await?;
let remaining: Duration = m.body().unwrap(); let remaining: Duration = m.body().deserialize()?;
let remaining_secs = remaining.as_secs(); let remaining_secs = remaining.as_secs();
println!("{:02}:{:02}", remaining_secs / 60, remaining_secs % 60); println!("{:02}:{:02}", remaining_secs / 60, remaining_secs % 60);
Ok(()) Ok(())
@ -148,7 +148,7 @@ async fn is_running(connection: &Connection) -> Result<(), fdo::Error> {
&(), &(),
) )
.await?; .await?;
let is_running: bool = m.body().unwrap(); let is_running: bool = m.body().deserialize()?;
println!("{}", is_running as u8); println!("{}", is_running as u8);
Ok(()) Ok(())
} }
@ -163,7 +163,7 @@ async fn is_on_break(connection: &Connection) -> Result<(), fdo::Error> {
&(), &(),
) )
.await?; .await?;
let is_on_break: bool = m.body().unwrap(); let is_on_break: bool = m.body().deserialize()?;
println!("{}", is_on_break as u8); println!("{}", is_on_break as u8);
Ok(()) Ok(())
} }