diff options
author | Florian Klink <flokli@flokli.de> | 2024-05-01T17·25+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-05-01T19·10+0000 |
commit | ea7b334a626a7b9235b858598560add6f5efe1c1 (patch) | |
tree | f457721729833f17103c25d016af12942493322a /tvix | |
parent | f22232533937b157a926af9840777a38e4a21883 (diff) |
feat(tvix/castore): expose PathBuf too r/8062
Change-Id: I1538725766a73436eba9a92dcb4f3275ace2fa4e Reviewed-on: https://cl.tvl.fyi/c/depot/+/11573 Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de> Reviewed-by: Connor Brewster <cbrewster@hey.com>
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/castore/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/castore/src/lib.rs b/tvix/castore/src/lib.rs index 6f5e683b4047..bdc533a8c5e6 100644 --- a/tvix/castore/src/lib.rs +++ b/tvix/castore/src/lib.rs @@ -10,7 +10,7 @@ pub mod fixtures; pub mod fs; mod path; -pub use path::Path; +pub use path::{Path, PathBuf}; pub mod import; pub mod proto; |