workspacer-pin 0.1.2

A Rust crate for pinning wildcard dependencies within workspaces using local versions or lockfile fallbacks, ensuring reliable and reproducible builds. Supports async operations and complex nested structures in `Cargo.toml`.
Documentation
1
2
3
4
5
6
7
// ---------------- [ File: workspacer-pin/src/is_dependencies_key.rs ]
crate::ix!();

/// Checks if a table key ends with "dependencies"
pub fn is_dependencies_key(k: &str) -> bool {
    k.ends_with("dependencies")
}