ckb-rust-std 1.0.0

A collection of `no_std` compatible modules ported from Rust's standard library, with an initial focus on the `io` module.
Documentation
name: Rust

on:
  pull_request:

jobs:
  develop:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
      with:
        submodules: true
    - name: Format
      run: cargo fmt -- --check
    - name: Clippy
      run: cargo clippy
    - name: Build
      run: cargo build
    - name: Test
      run: |
        cargo test
    - name: Test on Rust 1.75
      run: |
        rustup install 1.75.0
        rustup run 1.75.0 cargo test  --features rust_before_181