mirror of
https://codeberg.org/icewind/php-literal-parser.git
synced 2026-06-03 10:34:08 +02:00
update dependencies
This commit is contained in:
parent
0df7145eef
commit
20dad94035
3 changed files with 4 additions and 5 deletions
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "php-literal-parser"
|
||||
description = "parser for php literals"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
authors = ["Robin Appelman <robin@icewind.nl>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
|
@ -9,7 +9,7 @@ repository = "https://github.com/icewind1991/php-literal-parser"
|
|||
documentation = "https://docs.rs/php-literal-parser"
|
||||
|
||||
[dependencies]
|
||||
logos = "0.11"
|
||||
logos = "0.12"
|
||||
thiserror = "1.0"
|
||||
source-span = "2.2"
|
||||
memchr = "2.3.4"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
use logos::{Lexer, Logos, Span};
|
||||
use serde::export::fmt::Debug;
|
||||
use serde::export::Formatter;
|
||||
use std::fmt::{Debug, Formatter};
|
||||
|
||||
#[derive(Logos, Debug, PartialEq, Clone, Copy)]
|
||||
pub enum Token {
|
||||
|
|
|
|||
|
|
@ -9,8 +9,8 @@ use crate::lexer::{SpannedToken, Token};
|
|||
use crate::num::ParseIntError;
|
||||
use crate::parser::{ArraySyntax, Parser};
|
||||
use crate::{Key, ParseError, RawParseError};
|
||||
use serde::export::TryFrom;
|
||||
use std::collections::VecDeque;
|
||||
use std::convert::TryFrom;
|
||||
|
||||
type Result<T> = std::result::Result<T, ParseError>;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue