Skip to content

Commit

Permalink
Merge pull request #25 from TheCacophonyProject/refactor-and-audio-me…
Browse files Browse the repository at this point in the history
…tadata

Refactor and audio metadata
  • Loading branch information
hardiesoft authored Oct 2, 2024
2 parents 9228361 + c85014b commit b16bd44
Show file tree
Hide file tree
Showing 20 changed files with 2,124 additions and 1,407 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: Rust CI and release

on:
push:
branches:
branches:
- '**'
tags:
- '*'
pull_request:
branches:
branches:
- '**'

jobs:
Expand All @@ -24,7 +24,7 @@ jobs:
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.77.1
toolchain: 1.81.0
override: true

- name: Display Rust and Cargo version
Expand Down
15 changes: 8 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,25 @@ authors = ["Cacophony Developers <[email protected]>"]

[dependencies]
framebuffer = "0.3.1"
bmp = "0.5.0"
rppal = "0.17.0"
chrono = "0.4.31"
rppal = "0.19.0"
chrono = { version = "0.4.38", features = ["serde"] }
byteorder = "1.4.3"
thread-priority = "1.1.0"
argh = "0.1.10"
mdns-sd = "0.11.0"
crc = "3.0.1"
log = "0.4.19"
simplelog = "0.12.1"
flate2 = "1.0.26"
flate2 = "1.0.33"
nom = "7.1.3"
serde = { version = "1.0.183", features = ["derive"] }
toml = "0.8.8"
notify = { version = "6.1.1", default-features = false }
chrono-tz = "0.9.0"
chrono-tz = "0.10.0"
signal-hook = "0.3.17"
sun-times = "0.2.0"
triangulate = "0.2.0"
louvre = "0.2.1"
rustbus = "0.19.3"
lazy_static = "1.4.0"
sha256 = "1.5.0"

[target.aarch64-unknown-linux-musl]
Expand All @@ -51,3 +49,6 @@ assets = [
]
maintainer-scripts = "_releases/scripts"
revision = ""

[profile.release]
lto = true
2 changes: 2 additions & 0 deletions rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
use_field_init_shorthand = true
use_small_heuristics = "Max"
Loading

0 comments on commit b16bd44

Please sign in to comment.