docs: declare readme = "README.md" for the last four crates
hive-c0re, hive-claude, hive-forge and hivectl each ship a README.md but never declared it in their package manifest, so cargo/docs.rs metadata did not pick it up. Every other workspace member already sets the field; this closes the gap left after the README backfill.
This commit is contained in:
parent
170fd817ea
commit
270d3aafa2
4 changed files with 5 additions and 0 deletions
|
|
@ -2,6 +2,8 @@
|
|||
name = "hive-c0re"
|
||||
edition.workspace = true
|
||||
version.workspace = true
|
||||
readme = "README.md"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
name = "hive-claude"
|
||||
edition.workspace = true
|
||||
version.workspace = true
|
||||
readme = "README.md"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
name = "hive-forge"
|
||||
edition.workspace = true
|
||||
version.workspace = true
|
||||
readme = "README.md"
|
||||
|
||||
[[bin]]
|
||||
name = "hive-forge"
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
name = "hivectl"
|
||||
edition.workspace = true
|
||||
version.workspace = true
|
||||
readme = "README.md"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
|
|
|||
Loading…
Reference in a new issue