Run generate-options

This commit is contained in:
Charlie Marsh
2022-12-21 20:58:14 -05:00
parent dad8035eef
commit ff66d08cef
2 changed files with 4 additions and 2 deletions

View File

@@ -1971,7 +1971,8 @@ when resolving imports, `my_package.foo` is considered a first-party import.
This field supports globs. For example, if you have a series of Python packages in
a `python_modules` directory, `src = ["python_modules/*"]` would expand to incorporate
all of the packages in that directory.
all of the packages in that directory. User home directory and environment variables
will also be expanded.
**Default value**: `["."]`

View File

@@ -286,7 +286,8 @@ pub struct Options {
This field supports globs. For example, if you have a series of Python packages in
a `python_modules` directory, `src = ["python_modules/*"]` would expand to incorporate
all of the packages in that directory.
all of the packages in that directory. User home directory and environment variables
will also be expanded.
"#,
default = r#"["."]"#,
value_type = "Vec<PathBuf>",