From f28208efe68d7853c485afa77242a76071fa37e8 Mon Sep 17 00:00:00 2001 From: Tristan Debrunner Date: Wed, 18 Jan 2023 16:41:54 -0700 Subject: [PATCH] v0.1.3 --- Cargo.lock | 10 +++++----- fonts/Cargo.toml | 2 +- matrix-drawing/Cargo.toml | 6 +++--- overlay/Cargo.toml | 2 +- refbox/Cargo.toml | 6 +++--- uwh-common/Cargo.toml | 4 ++-- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1b92f9e6..574e83d3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1364,7 +1364,7 @@ dependencies = [ [[package]] name = "fonts" -version = "0.1.2" +version = "0.1.3" dependencies = [ "embedded-graphics", ] @@ -2391,7 +2391,7 @@ dependencies = [ [[package]] name = "matrix-drawing" -version = "0.1.2" +version = "0.1.3" dependencies = [ "arrayref", "arrayvec 0.7.2", @@ -2930,7 +2930,7 @@ dependencies = [ [[package]] name = "overlay" -version = "0.1.0" +version = "0.1.3" dependencies = [ "clap 4.1.0", "coarsetime", @@ -3292,7 +3292,7 @@ dependencies = [ [[package]] name = "refbox" -version = "0.1.2" +version = "0.1.3" dependencies = [ "array-concat", "arrayref", @@ -4301,7 +4301,7 @@ dependencies = [ [[package]] name = "uwh-common" -version = "0.1.2" +version = "0.1.3" dependencies = [ "arrayref", "arrayvec 0.7.2", diff --git a/fonts/Cargo.toml b/fonts/Cargo.toml index be8fa78a..47e770b5 100644 --- a/fonts/Cargo.toml +++ b/fonts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fonts" -version = "0.1.2" +version = "0.1.3" authors = ["Atlantis Sports "] edition = "2021" diff --git a/matrix-drawing/Cargo.toml b/matrix-drawing/Cargo.toml index dee29b2e..255dc1ad 100644 --- a/matrix-drawing/Cargo.toml +++ b/matrix-drawing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matrix-drawing" -version = "0.1.2" +version = "0.1.3" authors = ["Atlantis Sports "] edition = "2021" @@ -12,8 +12,8 @@ std = ["arrayvec/std", "serde/std", "uwh-common/std"] arrayref = "0.3.6" arrayvec = { version = "0.7.2", default-features = false } embedded-graphics = "0.7.1" -fonts = { version = "0.1.2", path = "../fonts" } +fonts = { version = "0.1.3", path = "../fonts" } more-asserts = "0.2" serde = { version = "1.0", default-features = false } serde_derive = "1.0" -uwh-common = { version = "0.1.2", path = "../uwh-common", default-features = false } +uwh-common = { version = "0.1.3", path = "../uwh-common", default-features = false } diff --git a/overlay/Cargo.toml b/overlay/Cargo.toml index ea6b7a7b..5a8787e6 100644 --- a/overlay/Cargo.toml +++ b/overlay/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "overlay" -version = "0.1.0" +version = "0.1.3" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/refbox/Cargo.toml b/refbox/Cargo.toml index 2de66e71..066f0f5a 100644 --- a/refbox/Cargo.toml +++ b/refbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "refbox" -version = "0.1.2" +version = "0.1.3" description = "UI for Atlantis Sports's Underwater Hockey Refbox" authors = ["Atlantis Sports "] edition = "2021" @@ -40,8 +40,8 @@ time = { version = "0.3", features = ["local-offset", "macros", "serde", "serde- tokio = { version = "1.18", features = ["io-util", "macros", "net", "sync", "time"] } tokio-serial = "5.4" toml = "0.5" -uwh-common = { version = "0.1.2", path = "../uwh-common"} -matrix-drawing = { version = "0.1.2", path = "../matrix-drawing"} +uwh-common = { version = "0.1.3", path = "../uwh-common"} +matrix-drawing = { version = "0.1.3", path = "../matrix-drawing"} web-audio-api = { version = "0.26", default-features = false, features = ["cpal"] } [target.'cfg(target_os = "linux")'.dependencies] diff --git a/uwh-common/Cargo.toml b/uwh-common/Cargo.toml index 127a8487..e619fd89 100644 --- a/uwh-common/Cargo.toml +++ b/uwh-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uwh-common" -version = "0.1.2" +version = "0.1.3" authors = ["Atlantis Sports "] edition = "2021" @@ -14,7 +14,7 @@ arrayvec = { version = "0.7.2", default-features = false, features = ["serde"] } defmt = "0.3.1" derivative = { version = "2.2.0", features = ["use_core"] } displaydoc = { version = "0.2.3", default-features = false } -fonts = { version = "0.1.2", path = "../fonts" } +fonts = { version = "0.1.3", path = "../fonts" } log = "0.4.16" serde = { version = "1.0", default-features = false, features = ["derive"] } time = { version = "0.3", features = [