Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inconsistent build docs with cargo spec #2772

Open
nyurik opened this issue Mar 13, 2025 · 1 comment
Open

Inconsistent build docs with cargo spec #2772

nyurik opened this issue Mar 13, 2025 · 1 comment

Comments

@nyurik
Copy link

nyurik commented Mar 13, 2025

On the build docs page Setting a README, it says

The README of a crate is taken from the readme field defined in Cargo.toml. If this field is not set, no README will be displayed.

But the cargo reference for the readme field states:

If no value is specified for this field, and a file named README.md, README.txt or README exists in the package root, then the name of that file will be used. You can suppress this behavior by setting this field to false. If the field is set to true, a default value of README.md will be assumed.

Does docs-rs incorrectly state that it will not do the same default readme field resolution, or does it behave differently from cargo?

@syphar
Copy link
Member

syphar commented Mar 13, 2025

our info page is wrong:

async fn fetch_readme(&self, storage: &AsyncStorage) -> anyhow::Result<Option<String>> {
let manifest = match storage
.fetch_source_file(
&self.name,
&self.version.to_string(),
self.latest_build_id,
"Cargo.toml",
self.archive_storage,
)
.await
{
Ok(manifest) => manifest,
Err(err) if err.is::<PathNotFoundError>() => {
return Ok(None);
}
Err(err) => {
return Err(err);
}
};
let manifest = String::from_utf8(manifest.content)
.context("parsing Cargo.toml")?
.parse::<toml::Value>()
.context("parsing Cargo.toml")?;
let paths = match manifest.get("package").and_then(|p| p.get("readme")) {
Some(toml::Value::Boolean(true)) => vec!["README.md"],
Some(toml::Value::Boolean(false)) => vec![],
Some(toml::Value::String(path)) => vec![path.as_ref()],
_ => vec!["README.md", "README.txt", "README"],
};
for path in &paths {
match storage
.fetch_source_file(
&self.name,
&self.version.to_string(),
self.latest_build_id,
path,
self.archive_storage,
)
.await
{
Ok(readme) => {
let readme = String::from_utf8(readme.content)
.with_context(|| format!("parsing {path} content"))?;
return Ok(Some(readme));
}
Err(err) if err.is::<PathNotFoundError>() => {
continue;
}
Err(err) => {
return Err(err);
}
}
}
Ok(None)
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants