weighted_trie 0.2.0

Weighted prefix trie for autosuggestions
Documentation
name: Rust

on:
  push:
    branches: ["main"]
  pull_request:
    branches: ["main"]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v3
      - name: Load benchmark data
        run: wget https://gist.githubusercontent.com/subpath/c19778c9549e5dde02a405dd97fa7014/raw/6fe9433996607be9ceca6dc29e1d88582d64f5d1/weighted_strings.txt -P /tmp/data/benchmark
      - name: Build
        run: cargo build --verbose
      - name: Run tests
        run: cargo test
      - name: Run benchmark
        run: cargo bench