flat-tree 6.0.0

Series of functions to map a binary tree to a list
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: rust
cache: cargo
rust: stable

before_script:
  - rustup component add rustfmt
  - rustup component add clippy
  - cargo fmt --version
  - cargo clippy --version

script:
  - cargo fmt -- --check
  - cargo build --verbose
  - cargo test  --verbose
  - cargo clippy -- -D clippy::all