Skip to main content

WorkspaceGraph

Struct WorkspaceGraph 

Source
pub struct WorkspaceGraph { /* private fields */ }
Expand description

Workspace dependency graph.

Built from cargo_metadata, using petgraph for efficient traversals.

Implementations§

Source§

impl WorkspaceGraph

Source

pub fn from_metadata(metadata: &Metadata) -> RailResult<Self>

Load workspace graph from cargo metadata.

§Performance
  • Graph construction: 10-50ms
  • Path cache: built eagerly (10-50ms)
  • Does not reload metadata (use existing from CargoState)
Source

pub fn workspace_members(&self) -> &[String]

Get all workspace member crate names (pre-sorted).

Source

pub fn transitive_dependents(&self, crate_name: &str) -> RailResult<Vec<String>>

Get transitive reverse dependencies (all workspace crates that depend on this one).

Uses petgraph DFS for efficient traversal.

§Performance

O(V + E) where V = vertices, E = edges. Typically <10ms for <100 crates.

Source

pub fn transitive_dependents_of_set( &self, crate_names: &HashSet<String>, ) -> RailResult<HashSet<String>>

Get transitive reverse dependencies for multiple crates in a single traversal.

This is more efficient than calling transitive_dependents() multiple times when you have many direct crates, as it does a single O(V+E) traversal instead of O(N × (V+E)) where N is the number of crates.

§Performance

O(V + E) regardless of input set size. Significantly faster than N separate traversals for large input sets.

Source

pub fn publish_order(&self) -> RailResult<Vec<String>>

Get workspace members in dependency order (dependencies first, dependents last).

Returns crates in the order they should be published: a crate’s dependencies are always published before the crate itself.

Uses topological sort on the dependency graph to ensure correct ordering.

§Errors

Returns error if circular dependencies are detected (should never happen with Cargo).

§Performance

O(V + E) where V = vertices, E = edges. Typically <10ms for <100 crates.

Source

pub fn file_to_crate(&self, file_path: &Path) -> Option<String>

Map a file path to its owning crate.

O(1) lookups using pre-built path cache. Filters out VCS directories (.git, .jj) and other non-source paths.

Accepts both:

  • Workspace-relative paths (e.g., “crates/foo/src/lib.rs”)
  • Absolute paths (will be converted to workspace-relative)

Works for deleted files - does not require the file to exist on disk.

Source

pub fn files_to_crates( &self, file_paths: &[impl AsRef<Path>], ) -> HashSet<String>

Map multiple files to owning crates.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.