publish-crate fixups

This commit is contained in:
Michael Vines
2019-05-30 13:44:27 -07:00
parent b8aff218e2
commit d642125f68
4 changed files with 4 additions and 2 deletions

View File

@ -26,7 +26,7 @@ def get_packages():
dependency_graph = dict()
for pkg in metadata['packages']:
manifest_path[pkg['name']] = pkg['manifest_path'];
dependency_graph[pkg['name']] = [x['name'] for x in pkg['dependencies'] if x['name'].startswith('solana-')];
dependency_graph[pkg['name']] = [x['name'] for x in pkg['dependencies'] if x['name'].startswith('solana')];
# Check for direct circular dependencies
circular_dependencies = set()