Skip to content

Commit d378451

Browse files
committed
wip
1 parent d393beb commit d378451

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
mod util;
22

33
use std::{path::{Path, PathBuf, Component}, fs, collections::{HashSet, HashMap}};
4-
use util::RegexDef;
4+
use crate::util::RegexDef;
55
use lazy_static::lazy_static;
66
use radix_trie::Trie;
77
use fancy_regex::Regex;

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
mod lib;
1+
mod util;
22

33
use std::path::PathBuf;
44

5-
use lib::{pnp_resolve, PnpResolutionConfig, Resolution};
5+
use pnp_rs::{pnp_resolve, PnpResolutionConfig, Resolution};
66

77
fn main() {
88
let mut args = std::env::args();

0 commit comments

Comments
 (0)