-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use proper Cargo aliases * update docs further * add command to view code documentation * bump Rust toolchain and crate version * add HART to startup & misc * added dynamic memory support
- Loading branch information
1 parent
9ece62e
commit 7884c26
Showing
29 changed files
with
458 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# For a reference to this file, see | ||
# https://doc.rust-lang.org/cargo/reference/config.html | ||
|
||
# ! Only use this file for aliases! Do not provide target information or | ||
# ! any other form of information in this file. This is because | ||
# ! configuration in this file are inflexible, see | ||
# ! https://georglauterbach.github.io/uncore/development/#about-the-workspace | ||
|
||
[alias] | ||
_help = ["run", "-q", "--", "help"] | ||
_run = ["run", "-q", "--", "run"] | ||
_debug = ["run", "-q", "--", "run", "--debug"] | ||
_check = ["run", "-q", "--", "check"] | ||
_doc = ["run", "-q", "--", "doc", "--open"] | ||
_utest = ["run", "-q", "--", "u-test"] | ||
_itest = ["run", "-q", "--", "i-test"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "uncore-helper" | ||
version = "1.0.0-alpha1" | ||
version = "1.0.1" | ||
edition = "2021" | ||
|
||
description = """ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.