Added 0BSD License

This commit is contained in:
Silas Bartha 2024-12-11 15:20:12 -05:00
parent 070ae7a6ac
commit e8dbc75d70
3 changed files with 10 additions and 5 deletions

2
Cargo.lock generated
View File

@ -884,7 +884,7 @@ dependencies = [
[[package]] [[package]]
name = "pomd" name = "pomd"
version = "1.5.0" version = "1.5.1"
dependencies = [ dependencies = [
"async-std", "async-std",
"confy", "confy",

View File

@ -1,14 +1,14 @@
[package] [package]
name = "pomd" name = "pomd"
version = "1.5.0" version = "1.5.1"
description = "A simple configurable pomodoro D-Bus daemon" description = "A simple configurable pomodoro D-Bus daemon"
license = "MIT OR Apache-2.0" license = "0BSD OR MIT OR Apache-2.0"
edition = "2021" edition = "2021"
keywords = ["productivity", "pomodoro", "daemon"] keywords = ["productivity", "pomodoro", "daemon"]
repository = "https://github.com/exvacuum/pomd" repository = "https://git.exvacuum.dev/pomd"
[dependencies] [dependencies]
notify-rust = "4" notify-rust = "4.11"
zbus = "5.1" zbus = "5.1"
async-std = { version = "1.12", features = ["attributes"] } async-std = { version = "1.12", features = ["attributes"] }
pausable_clock = "1.0" pausable_clock = "1.0"

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.