gtk-rs / gir

Tool to generate rust bindings and user API for glib-based libraries
https://gtk-rs.org/gir/book/
MIT License
225 stars 99 forks source link

Fix inserting all-features in Cargo.toml for docs.rs #1490

Closed pentamassiv closed 11 months ago

pentamassiv commented 11 months ago

Without this PR, this is what is added to the Cargo.toml of the sys crate:

[package.metadata.docs.rs]
all-features = "true"

With the fix the type is correct:

[package.metadata.docs.rs]
all-features = true

Sorry about that