Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,12 @@
//! ```
//!
//! # Overriding library name
//! `toml` keys cannot contain dot characters so if your library name does, you can define it using the `name` field:
//! Bare `toml` keys that contain dot characters, so if your library name does, you need to either quote it,
//! or you can define the real name using the `name` field:
//!
//! ```toml
//! [package.metadata.system-deps]
//! "glib-2.0" = { version = "2.64" }
//! glib = { name = "glib-2.0", version = "2.64" }
//! ```
//!
Expand Down
Loading