Rename crates from jinux-* to aster-*

This commit is contained in:
Jianfeng Jiang
2023-12-25 03:12:25 +00:00
committed by Tate, Hongliang Tian
parent 6dbf5d560d
commit 93781df27b
460 changed files with 596 additions and 595 deletions

View File

@ -351,7 +351,7 @@ mod test {
### Implement access rights with typeflags
The `Jinux-rights/lib.rs` file implements access rights.
The `aster-rights/lib.rs` file implements access rights.
```rust
//! Access rights.
@ -376,7 +376,7 @@ typeflags! {
}
```
The `Jinux-rights-proc/lib.rs` file implements the `require` procedural macro.
The `aster-rights-proc/lib.rs` file implements the `require` procedural macro.
See the channel capability example later for how `require` is used.
```rust