diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4925ee1..f200cc8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 08aadcd..7a4db5d 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 9562469..6b94340 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/docs/SETUP.md b/docs/SETUP.md index 9ba5d69..458fc48 100644 --- a/docs/SETUP.md +++ b/docs/SETUP.md @@ -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