We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83f1e37 commit 2c401c4Copy full SHA for 2c401c4
crates/pet-poetry/src/environment_locations.rs
@@ -42,6 +42,11 @@ pub fn list_environments(
42
})
43
.map(|workspace_dir| (workspace_dir, PyProjectToml::find(workspace_dir)))
44
.filter_map(|(workspace_dir, pyproject_toml)| {
45
+ trace!(
46
+ "Found pyproject.toml in workspace directory: {:?} and pyproject.toml: {:?}",
47
+ workspace_dir,
48
+ pyproject_toml
49
+ );
50
pyproject_toml.map(|pyproject_toml| (workspace_dir, pyproject_toml))
51
52
.collect::<Vec<_>>();
crates/pet-poetry/src/pyproject_toml.rs
@@ -8,6 +8,7 @@ use std::{
8
9
use log::{error, trace};
10
11
+#[derive(Debug)]
12
pub struct PyProjectToml {
13
pub name: String,
14
}
0 commit comments