Skip to content

Commit

Permalink
Cargo.toml: add more package metadata
Browse files Browse the repository at this point in the history
Running cargo bitbake to generate a bitbake recipe currently results
in a few error messages due to missing metadata:

  No package.description set in your Cargo.toml, using package.name
  No package.homepage set in your Cargo.toml, trying package.repository
  error: No package.repository set in your Cargo.toml

Fill out these gaps and add some more related keys found while reading
through the documentation at [1].

[1]: https://doc.rust-lang.org/cargo/reference/manifest.html

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
  • Loading branch information
a3f committed Jan 30, 2025
1 parent d45a929 commit e4b94f9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ name = "rsinit"
version = "0.1.0"
edition = "2021"
license = "GPL-2.0-only"
description = "minimalistic single binary initramfs init for embedded systems"
homepage = "https://github.com/michaelolbrich/rsinit"
repository = "https://github.com/michaelolbrich/rsinit"
keywords = ["initramfs", "init", "rdinit"]
categories = ["embedded"]
readme = "README.md"

[[bin]]
name = "init"
Expand Down

0 comments on commit e4b94f9

Please sign in to comment.