-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
8,368 additions
and
1,772 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -25,15 +25,8 @@ jobs: | |
run: sudo apt-get install g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev | ||
if: contains(matrix.platform.os, 'ubuntu') | ||
- uses: actions/checkout@v4 | ||
- uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.cargo/bin/ | ||
~/.cargo/registry/index/ | ||
~/.cargo/registry/cache/ | ||
~/.cargo/git/db/ | ||
target/ | ||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | ||
- run: rustup toolchain install stable --profile minimal | ||
- uses: Swatinem/[email protected] | ||
- name: Build | ||
run: cargo build --verbose | ||
- name: Run tests | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[package] | ||
name = "shared" | ||
edition = "2021" | ||
|
||
[lib] | ||
|
||
[dependencies] | ||
vpin = { version = "0.17.2" } | ||
#see https://github.com/chronotope/chrono/issues/602#issuecomment-1242149249 | ||
chrono = { version = "0.4.39", default-features = false, features = ["clock"] } | ||
rust-ini = "0.21.1" | ||
dirs = "6.0.0" | ||
toml = "0.8.19" | ||
serde = { version = "1.0.217", features = ["derive"] } | ||
serde_json = { version = "1.0.135", features = ["preserve_order"] } | ||
log = "0.4.22" | ||
figment = { version = "0.10", features = ["toml", "env"] } | ||
dialoguer = "0.11.0" | ||
regex = { version = "1.11.1", features = [] } | ||
walkdir = "2.5.0" | ||
|
||
[dev-dependencies] | ||
pretty_assertions = "1.4.1" | ||
rand = "0.8.5" | ||
testdir = "0.9.3" |
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
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pub mod config; | ||
pub mod indexer; |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.