mirror of
https://codeberg.org/icewind/php-literal-parser.git
synced 2026-06-03 18:44:07 +02:00
bumb dependencies
This commit is contained in:
parent
616f7126ef
commit
8b812ac05c
2 changed files with 9 additions and 8 deletions
2
.github/workflows/rust.yml
vendored
2
.github/workflows/rust.yml
vendored
|
|
@ -56,7 +56,7 @@ jobs:
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: 1.54
|
toolchain: 1.56
|
||||||
override: true
|
override: true
|
||||||
- uses: Swatinem/rust-cache@v1
|
- uses: Swatinem/rust-cache@v1
|
||||||
- uses: actions-rs/cargo@v1
|
- uses: actions-rs/cargo@v1
|
||||||
|
|
|
||||||
15
Cargo.toml
15
Cargo.toml
|
|
@ -1,22 +1,23 @@
|
||||||
[package]
|
[package]
|
||||||
name = "php-literal-parser"
|
name = "php-literal-parser"
|
||||||
description = "parser for php literals"
|
description = "parser for php literals"
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
authors = ["Robin Appelman <robin@icewind.nl>"]
|
authors = ["Robin Appelman <robin@icewind.nl>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
repository = "https://github.com/icewind1991/php-literal-parser"
|
repository = "https://github.com/icewind1991/php-literal-parser"
|
||||||
documentation = "https://docs.rs/php-literal-parser"
|
documentation = "https://docs.rs/php-literal-parser"
|
||||||
|
rust-version = "1.56"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
logos = "0.12.1"
|
logos = "0.12.1"
|
||||||
thiserror = "1.0.37"
|
thiserror = "1.0.38"
|
||||||
memchr = "2.5.0"
|
memchr = "2.5.0"
|
||||||
serde = "1.0.145"
|
serde = "1.0.152"
|
||||||
miette = "5.3.0"
|
miette = "5.5.0"
|
||||||
parse-display = "0.6.0"
|
parse-display = "0.8.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
maplit = "1.0.2"
|
maplit = "1.0.2"
|
||||||
serde_derive = "1.0.145"
|
serde_derive = "1.0.152"
|
||||||
miette = { version = "5.3.0", features = ["fancy"] }
|
miette = { version = "5.5.0", features = ["fancy"] }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue