Searched refs:found_pkgs (Results 1 – 1 of 1) sorted by relevance
/development/scripts/ |
D | get_rust_pkg.py | 275 def show_all_dependencies(args, found_pkgs): argument 277 found_pkgs = sort_found_pkgs(found_pkgs) 278 max_length = functools.reduce(lambda a, t: max(a, len(t[0])), found_pkgs, 1) 293 for (pkg, build_deps, dev_deps) in found_pkgs: 315 def crates_io_find_pkgs(args, pkgs, found_pkgs): argument 323 found_pkgs.append((pkg, build_deps, dev_deps)) 353 def add_indirect_build_deps(args, found_pkgs): argument 355 all_deps = dict(map(lambda t: (t[0], t), found_pkgs)) 356 core_pkgs = set(map(lambda t: t[0], found_pkgs)) 382 found_pkgs = list(map(lambda p: all_deps[p], core_pkgs)) [all …]
|