We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1514c7e commit 1d960c7Copy full SHA for 1d960c7
src/cargo/core/source_id.rs
@@ -393,6 +393,9 @@ impl SourceId {
393
.url
394
.to_file_path()
395
.expect("path sources cannot be remote");
396
+ if crate::util::toml::is_embedded(&path) {
397
+ anyhow::bail!("The embedded script cannot be used as a dependency");
398
+ }
399
Ok(Box::new(PathSource::new(&path, self, gctx)))
400
}
401
SourceKind::Registry | SourceKind::SparseRegistry => Ok(Box::new(
tests/testsuite/script.rs
@@ -1402,10 +1402,7 @@ Caused by:
1402
Unable to update [ROOT]/foo/script.rs
1403
1404
Caused by:
1405
- failed to read `[ROOT]/foo/script.rs/Cargo.toml`
1406
-
1407
-Caused by:
1408
- Not a directory (os error 20)
+ The embedded script cannot be used as a dependency
1409
1410
"#]])
1411
.run();
0 commit comments