This commit is contained in:
Antoine Gersant 2020-12-08 00:16:21 -08:00
commit 7477158891
4 changed files with 2 additions and 7 deletions

View file

@ -14,9 +14,6 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Install libsqlite3-dev
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install libsqlite3-dev
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:

View file

@ -14,8 +14,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install libsqlite3-dev
run: sudo apt-get update && sudo apt-get install libsqlite3-dev
- name: Checkout Polaris
uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1

View file

@ -17,7 +17,7 @@ crossbeam-channel = "0.5"
diesel_migrations = { version = "1.4", features = ["sqlite"] }
getopts = "0.2.15"
id3 = "0.5.1"
libsqlite3-sys = { version = "0.16", features = ["bundled-windows"] }
libsqlite3-sys = { version = "*", features = ["bundled", "bundled-windows"] }
rustfm-scrobble = "^1"
lewton = "0.10.1"
log = "0.4.5"

View file

@ -17,7 +17,7 @@ You can now start Polaris from the start menu or from your desktop, Polaris will
#### Dependencies
1. Install OpenSSL, SQLite and their headers, and some development tools. These are available from your distribution's package manager. For instance on Ubuntu, execute `sudo apt-get install binutils pkg-config libssl-dev libsqlite3-dev`
1. Install OpenSSL, SQLite and their headers, and some development tools. These are available from your distribution's package manager. For instance on Ubuntu, execute `sudo apt-get install binutils pkg-config libssl-dev`
2. Install the Rust compiler by executing `curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh` or using an [alternative method](https://www.rust-lang.org/en-US/install.html)
#### Polaris installation