Compare commits

..

No commits in common. "c4b68a130e8313378883283da1fe0000081508c3" and "f54b60b50b58d44aedc695177343ba53e26b93b2" have entirely different histories.

2 changed files with 8 additions and 4 deletions

View File

@ -12,9 +12,12 @@ jobs:
- uses: https://git.oliveratkinson.net/Oliver/setup-rust-action@master
with:
rust-version: ${{ matrix.rust }}
- name: var
run: echo $GITEA_PATH
- uses: actions/checkout@master
- name: Env display
run: echo $PATH
- name: which
run: which cargo
- name: Run tests
run: cargo test --verbose
- name: Clippy
run: cargo clippy

View File

@ -10,7 +10,8 @@ edition = "2021"
[dependencies]
tokio = { version = "1.21.2", features = ["macros", "rt-multi-thread"] }
poise = { features = ["cache"], git="https://github.com/Rushmore75/poise.git", rev="6afaf44a791cd3ff590c89fda26c94b4411b3266" }
# songbird = { version = "0.3.2", features = ["yt-dlp"] }
poise = { version = "0.6", features = ["cache"], path="../poise" }
dotenv = "0.15.0"
anyhow = "1.0.75"
once_cell = "1.19.0"