mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-08 18:02:05 +03:00
rust-shed/futures_01_ext: rename futures_ext to futures_01_ext
Summary: As part of the effort to deprecate futures 0.1 in favor of 0.3 I want to create a new futures_ext crate that will contain some of the extensions that are applicable from the futures_01_ext. But first I need to reclame this crate name by renaming the old futures_ext crate. This will also make it easier to track which parts of codebase still use the old futures. Reviewed By: farnz Differential Revision: D24725776 fbshipit-source-id: 3574d2a0790f8212f6fad4106655cd41836ff74d
This commit is contained in:
committed by
Facebook GitHub Bot
parent
54bc8c28ab
commit
950b3b1d0e
@@ -1281,7 +1281,13 @@ incremental = false
|
|||||||
continue # filter out commented lines and ones without git deps
|
continue # filter out commented lines and ones without git deps
|
||||||
for name, conf in dep_to_git.items():
|
for name, conf in dep_to_git.items():
|
||||||
if 'git = "{}"'.format(conf["repo_url"]) in line:
|
if 'git = "{}"'.format(conf["repo_url"]) in line:
|
||||||
crate_name, _, _ = line.partition("=")
|
pkg_template = ' package = "'
|
||||||
|
if pkg_template in line:
|
||||||
|
crate_name, _, _ = line.partition(pkg_template)[
|
||||||
|
2
|
||||||
|
].partition('"')
|
||||||
|
else:
|
||||||
|
crate_name, _, _ = line.partition("=")
|
||||||
deps_to_crates.setdefault(name, set()).add(crate_name.strip())
|
deps_to_crates.setdefault(name, set()).add(crate_name.strip())
|
||||||
return deps_to_crates
|
return deps_to_crates
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user