usecrate::compatibility::contract_capability::ContractCapability;/// A bundle node in the capability graph.
#[derive(Debug)]pubstructBundleNode{pubname: String,
/// Contracts this bundle provides.
pubprovides:Vec<ContractCapability>,
/// Contracts this bundle requires.
pubrequires:Vec<ContractCapability>,
}