lib

Core libraries for Radroots
git clone https://radroots.dev/git/lib.git
Log | Files | Refs | README | LICENSE

commit dec78a5bd08dea3037ac730d2fe40f4c28d17473
parent 2c81d2b8877df2be54346ae77b9f19b18a386799
Author: triesap <tyson@radroots.org>
Date:   Fri, 10 Apr 2026 00:56:21 +0000

identity: restore std path import

Diffstat:
Mcrates/identity/src/identity.rs | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/crates/identity/src/identity.rs b/crates/identity/src/identity.rs @@ -19,10 +19,8 @@ use radroots_runtime::JsonFile; use radroots_runtime_paths::{ RadrootsPathOverrides, RadrootsPathProfile, RadrootsPathResolver, default_shared_identity_path, }; -#[cfg(all(feature = "std", feature = "json-file"))] -use std::path::PathBuf; #[cfg(feature = "std")] -use std::{fs, path::Path}; +use std::{fs, path::{Path, PathBuf}}; pub const DEFAULT_IDENTITY_PATH: &str = "default.json";