Searched refs:found_pkgs (Results 1 – 1 of 1) sorted by relevance
/development/scripts/ |
D | get_rust_pkg.py | 264 def show_all_dependencies(args, found_pkgs): argument 266 found_pkgs = sort_found_pkgs(found_pkgs) 267 max_length = functools.reduce(lambda a, t: max(a, len(t[0])), found_pkgs, 1) 282 for (pkg, build_deps, dev_deps) in found_pkgs: 304 def crates_io_find_pkgs(args, pkgs, found_pkgs): argument 312 found_pkgs.append((pkg, build_deps, dev_deps)) 342 def add_indirect_build_deps(args, found_pkgs): argument 344 all_deps = dict(map(lambda t: (t[0], t), found_pkgs)) 345 core_pkgs = set(map(lambda t: t[0], found_pkgs)) 371 found_pkgs = list(map(lambda p: all_deps[p], core_pkgs)) [all …]
|