bit_code 0.1.5

Simple crate to create bit sequences
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
stages:
  - test

rust_tests:
  stage: test
  image: rust:latest

  cache:
    key: ${CI_PROJECT_ID}
    paths:
      - target/
      - ~/.cargo/registry
      - ~/.cargo/git

  script:
    - cargo build --verbose
    - cargo test --verbose