diff options
Diffstat (limited to 'tvix/eval/src/value/mod.rs')
-rw-r--r-- | tvix/eval/src/value/mod.rs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tvix/eval/src/value/mod.rs b/tvix/eval/src/value/mod.rs index e181b3a2da4e..df663dd34c06 100644 --- a/tvix/eval/src/value/mod.rs +++ b/tvix/eval/src/value/mod.rs @@ -3,7 +3,7 @@ use std::cmp::Ordering; use std::fmt::Display; use std::num::{NonZeroI32, NonZeroUsize}; -use std::path::PathBuf; +use std::path::{Path, PathBuf}; use std::rc::Rc; use bstr::{BString, ByteVec}; @@ -50,7 +50,7 @@ pub enum Value { String(NixString), #[serde(skip)] - Path(Box<PathBuf>), + Path(Box<Path>), Attrs(Box<NixAttrs>), List(NixList), @@ -76,7 +76,7 @@ pub enum Value { #[serde(skip)] DeferredUpvalue(StackIdx), #[serde(skip)] - UnresolvedPath(Box<PathBuf>), + UnresolvedPath(Box<Path>), #[serde(skip)] Json(serde_json::Value), @@ -349,7 +349,7 @@ impl Value { import_paths: true, .. }, ) => { - let imported = generators::request_path_import(co, *p).await; + let imported = generators::request_path_import(co, p.to_path_buf()).await; // When we import a path from the evaluator, we must attach // its original path as its context. context = context.append(NixContextElement::Plain( @@ -363,7 +363,7 @@ impl Value { import_paths: false, .. }, - ) => Ok(p.into_os_string().into_encoded_bytes().into()), + ) => Ok((*p).as_os_str().as_encoded_bytes().into()), // Attribute sets can be converted to strings if they either have an // `__toString` attribute which holds a function that receives the @@ -705,7 +705,7 @@ impl Value { Value::String(s), s.clone() ); - gen_cast!(to_path, Box<PathBuf>, "path", Value::Path(p), p.clone()); + gen_cast!(to_path, Box<Path>, "path", Value::Path(p), p.clone()); gen_cast!(to_attrs, Box<NixAttrs>, "set", Value::Attrs(a), a.clone()); gen_cast!(to_list, NixList, "list", Value::List(l), l.clone()); gen_cast!( @@ -1009,7 +1009,7 @@ impl From<f64> for Value { impl From<PathBuf> for Value { fn from(path: PathBuf) -> Self { - Self::Path(Box::new(path)) + Self::Path(path.into_boxed_path()) } } |