Skip to content

Commit 844571f

Browse files
committed
chore(deps): bump dirs
1 parent 1fc9f98 commit 844571f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/compilers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ winnow = "0.6"
4141
dyn-clone = "1"
4242
derive_more = { version = "1", features = ["debug"] }
4343
home = "0.5"
44-
dirs = "5.0"
44+
dirs = "6.0"
4545
itertools = ">=0.13, <=0.14"
4646

4747
# project-util

crates/compilers/src/compilers/vyper/parser.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use winnow::{
1616
ascii::space1,
1717
combinator::{alt, opt, preceded},
1818
token::{take_till, take_while},
19-
PResult, Parser,
19+
ModalResult, Parser,
2020
};
2121

2222
#[derive(Clone, Debug, PartialEq)]
@@ -161,7 +161,7 @@ fn parse_imports(content: &str) -> Vec<VyperImport> {
161161
}
162162

163163
/// Parses given input, trying to find (import|from) part1.part2.part3 (import part4)?
164-
fn parse_import(input: &mut &str) -> PResult<VyperImport> {
164+
fn parse_import(input: &mut &str) -> ModalResult<VyperImport> {
165165
(
166166
preceded(
167167
(alt(["from", "import"]), space1),

0 commit comments

Comments
 (0)