-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade deps * Update depandabot * Update CI * Ignore test that fails on CI * Use rustls for reqwest * Fix cross compilation * Update README CI badge
- Loading branch information
1 parent
09a47eb
commit 912fb04
Showing
4 changed files
with
14 additions
and
10 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,12 @@ version = "0.0.2" | |
authors = [ "adumbidiot <[email protected]>" ] | ||
edition = "2021" | ||
publish = false | ||
license = "MIT" | ||
|
||
[dependencies] | ||
anyhow = "1.0.86" | ||
argh = "0.1.12" | ||
audiopus_sys = { version = "0.2.2", default-features = false } | ||
camino = { version = "1.1.8", features = [ "serde1" ] } | ||
# clokwerk = "0.4.0" | ||
clokwerk = { git = "https://github.com/mdsherry/clokwerk" } | ||
|
@@ -31,6 +33,12 @@ toml = "0.8.19" | |
zalgo = { git = "https://github.com/adumbidiot/zalgo-rs" } | ||
poise = "0.6.1" | ||
|
||
[features] | ||
default = [] | ||
pkg-config = [ | ||
"audiopus_sys/pkg-config", | ||
] | ||
|
||
[profile.release] | ||
lto = "fat" | ||
codegen-units = 1 | ||
|
@@ -40,6 +48,7 @@ debug-assertions = false | |
strip = "symbols" | ||
|
||
[patch.crates-io] | ||
audiopus_sys = { git = "https://github.com/adumbidiot/audiopus_sys", branch = "pkg-config" } | ||
|
||
[workspace] | ||
members = [ | ||
|
@@ -48,7 +57,7 @@ members = [ | |
|
||
[package.metadata.deb] | ||
name = "quarky" | ||
depends = "" | ||
depends = [ "libopus0", "yt-dlp" ] | ||
assets = [ | ||
[ "target/release/quarky", "usr/bin/", "700" ], | ||
[ "deb-config.toml", "etc/quarky/config.toml", "600" ], | ||
|
@@ -61,8 +70,3 @@ maintainer-scripts = "debian/" | |
[package.metadata.deb.systemd-units] | ||
enable = false | ||
start = false | ||
|
||
[package.metadata.rpi-deploy] | ||
targets = [ | ||
"aarch64-unknown-linux-gnu", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters