simd-json 0.1.19

High performance JSON parser based on a port of simdjson
Documentation
kind: pipeline
name: test-on-avx2

platform:
  arch: amd64

steps:
- name: test
  image: rust:1
  environment:
    RUSTFLAGS: '-C target-cpu=native'
  commands:
  - rustup component add rustfmt
  - cargo fmt --all -- --check
  - cargo build --verbose --all
  - cargo test --verbose --all
---

kind: pipeline
name: test-on-sse42

platform:
  arch: amd64

steps:
- name: test
  image: rust:1
  environment:
    RUSTFLAGS: '-C target-cpu=native -C target-feature=-avx2'
  commands:
  - rustup component add rustfmt
  - cargo fmt --all -- --check
  - cargo build --verbose --all
  - cargo test --verbose --all

---

kind: pipeline
name: test-on-pre-sse42

platform:
  arch: amd64

steps:
- name: test
  image: rust:1
  environment:
    RUSTFLAGS: '-C target-cpu=native -C target-feature=-avx2,-sse4.2'
  commands:
  - rustup component add rustfmt
  - cargo fmt --all -- --check
  - cargo build --verbose --all
  - cargo test --verbose --all

---

kind: pipeline
name: test-on-arm64

platform:
  arch: arm64

steps:
- name: test
  image: rust:1
  commands:
  - rustup default nightly
  - rustup update
  - cargo clean && cargo +nightly build --verbose --all --features neon
  - cargo +nightly test --verbose --all --features neon