diff options
Diffstat (limited to 'vendor/hermit-abi/Cargo.toml')
-rw-r--r-- | vendor/hermit-abi/Cargo.toml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/vendor/hermit-abi/Cargo.toml b/vendor/hermit-abi/Cargo.toml index 6ec8e2aa7..30bb616ed 100644 --- a/vendor/hermit-abi/Cargo.toml +++ b/vendor/hermit-abi/Cargo.toml @@ -12,9 +12,13 @@ [package] edition = "2021" name = "hermit-abi" -version = "0.3.1" +version = "0.3.0" authors = ["Stefan Lankes"] -description = "Hermit system calls definitions." +description = """ +hermit-abi is small interface to call functions from the unikernel RustyHermit. +It is used to build the target `x86_64-unknown-hermit`. +""" +documentation = "https://hermitcore.github.io/rusty-hermit/hermit_abi" readme = "README.md" keywords = [ "unikernel", @@ -25,6 +29,10 @@ license = "MIT OR Apache-2.0" repository = "https://github.com/hermitcore/rusty-hermit" resolver = "1" +[package.metadata.docs.rs] +features = ["docs"] +default-target = "x86_64-unknown-hermit" + [dependencies.alloc] version = "1.0.0" optional = true @@ -41,6 +49,7 @@ package = "rustc-std-workspace-core" [features] default = [] +docs = [] rustc-dep-of-std = [ "core", "alloc", |