diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-01-14 22:12:50 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-01-14 22:12:50 +0100 |
| commit | 314b9cf6eddda6d0a3c5bd153e960873622224b1 (patch) | |
| tree | 02c0476874fb9de60c6a1f99cb33f07530cf1f1e /common/object/src/lib.rs | |
| parent | abf25f340c11111369b69c13c34d8fed9d4f0da8 (diff) | |
| download | jellything-314b9cf6eddda6d0a3c5bd153e960873622224b1.tar jellything-314b9cf6eddda6d0a3c5bd153e960873622224b1.tar.bz2 jellything-314b9cf6eddda6d0a3c5bd153e960873622224b1.tar.zst | |
object inspect tag
Diffstat (limited to 'common/object/src/lib.rs')
| -rw-r--r-- | common/object/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/object/src/lib.rs b/common/object/src/lib.rs index 59a758f..02b2293 100644 --- a/common/object/src/lib.rs +++ b/common/object/src/lib.rs @@ -7,7 +7,7 @@ mod buffer; pub mod inspect; -pub mod path; +mod path; mod registry; #[cfg(test)] mod tests; @@ -15,6 +15,7 @@ mod value; pub use buffer::*; pub use registry::*; pub use value::*; +pub use path::*; use std::marker::PhantomData; |