mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Move reth-primitives::fs module to fs-utils crate (#8286)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
@ -12,6 +12,7 @@ workspace = true
|
||||
|
||||
[dependencies]
|
||||
reth-primitives.workspace = true
|
||||
reth-fs-util.workspace = true
|
||||
|
||||
http.workspace = true
|
||||
hyper.workspace = true
|
||||
|
||||
@ -1,10 +1,7 @@
|
||||
use jsonwebtoken::{decode, errors::ErrorKind, Algorithm, DecodingKey, Validation};
|
||||
use rand::Rng;
|
||||
use reth_primitives::{
|
||||
fs,
|
||||
fs::FsPathError,
|
||||
hex::{self, encode as hex_encode},
|
||||
};
|
||||
use reth_fs_util::{self as fs, FsPathError};
|
||||
use reth_primitives::hex::{self, encode as hex_encode};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::{
|
||||
path::Path,
|
||||
|
||||
Reference in New Issue
Block a user