hypercore 0.8.1

Secure, distributed, append-only log
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-preview
  - rustup component add clippy-preview
  - cargo fmt --version
  - cargo clippy --version

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