squire 0.0.1-alpha.12

Safe and idiomatic SQLite bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Fetch SQLite sources
description: Restore (or download) the SQLite sources for the current squire-sqlite3-src version.

runs:
  using: composite
  steps:
    - name: Cache SQLite sources
      id: cache
      uses: actions/cache@v5
      with:
        path: crates/src/sqlite
        key: sqlite-src-${{ hashFiles('crates/src/Cargo.toml') }}
    - name: Download SQLite
      if: steps.cache.outputs.cache-hit != 'true'
      shell: bash
      run: cargo run -p squire-sqlite3-src-fetch