Skip to content

Commit

Permalink
Update README, publish v0.1.0 to crates.io
Browse files Browse the repository at this point in the history
  • Loading branch information
equation314 committed Jul 18, 2024
1 parent d8df77c commit 0d56a05
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ name = "bitmap-allocator"
version = "0.1.0"
authors = ["WangRunji <[email protected]>"]
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/rcore-os/bitmap-allocator"
keywords = ["bitmap", "allocator", "memory"]
categories = ["memory-management", "no-std"]

[dependencies]
bit_field = "0.10"
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# BitmapAllocator

[![CI](https://github.com/rcore-os/bitmap-allocator/workflows/CI/badge.svg?branch=master)](https://github.com/rcore-os/bitmap-allocator/actions)
[![Crates.io](https://img.shields.io/crates/v/bitmap-allocator)](https://crates.io/crates/bitmap-allocator)
[![Docs.rs](https://docs.rs/bitmap-allocator/badge.svg)](https://docs.rs/bitmap-allocator)
[![CI](https://github.com/rcore-os/bitmap-allocator/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/rcore-os/bitmap-allocator/actions/workflows/main.yml)
[![Coverage Status](https://coveralls.io/repos/github/rcore-os/bitmap-allocator/badge.svg?branch=master)](https://coveralls.io/github/rcore-os/bitmap-allocator?branch=master)

Bit allocator based on segment tree algorithm.
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
//! Bit allocator based on segment tree algorithm.

#![no_std]
#![doc = include_str!("../README.md")]

use bit_field::BitField;
use core::ops::Range;
Expand Down

0 comments on commit 0d56a05

Please sign in to comment.