소스 검색

Update readme

Gary Guo 3 년 전
부모
커밋
2988ed52fb
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      README.md

+ 7 - 0
README.md

@@ -5,6 +5,8 @@ This library serves two purposes:
 1. Provide a pure Rust alternative to libgcc_eh or libunwind.
 2. Provide easier unwinding support for `#![no_std]` targets.
 
+Currently supports x86_64 and RV64.
+
 ## Unwinder
 
 The unwinder can be enabled with `unwinder` feature. Here are the feature gates related to
@@ -44,3 +46,8 @@ Here are the feature gates related:
 | system-alloc  | No      | Provides a global allocator which calls `malloc` and friends. Provided for convience. |
 
 If you are writing a `#![no_std]` program, simply enable `personality`, `panic-handler` and `system-alloc` in addition to the defaults, you instantly obtains the ability to do unwinding! An example is given in [`example/`](example).
+
+## TODO
+
+* A better project name!
+* Remove dependencies on `alloc`.